Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
B.cpp@1:326f0b56759b, 2014-09-05 (annotated)
- Committer:
- o_mexia
- Date:
- Fri Sep 05 08:17:25 2014 +0000
- Revision:
- 1:326f0b56759b
Laboratorio 1 - A01138679
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
o_mexia | 1:326f0b56759b | 1 | #include <iostream> |
o_mexia | 1:326f0b56759b | 2 | |
o_mexia | 1:326f0b56759b | 3 | using namespace std; |
o_mexia | 1:326f0b56759b | 4 | |
o_mexia | 1:326f0b56759b | 5 | bool ecuacion; |
o_mexia | 1:326f0b56759b | 6 | |
o_mexia | 1:326f0b56759b | 7 | int a, b, c; |
o_mexia | 1:326f0b56759b | 8 | |
o_mexia | 1:326f0b56759b | 9 | int main() |
o_mexia | 1:326f0b56759b | 10 | { |
o_mexia | 1:326f0b56759b | 11 | a = 0; |
o_mexia | 1:326f0b56759b | 12 | b = 0; |
o_mexia | 1:326f0b56759b | 13 | c = 0; |
o_mexia | 1:326f0b56759b | 14 | |
o_mexia | 1:326f0b56759b | 15 | ecuacion = ( ( !a && a ) || ( !b && b ) || ( !c && c)); |
o_mexia | 1:326f0b56759b | 16 | cout << ecuacion << endl; |
o_mexia | 1:326f0b56759b | 17 | return 0; |
o_mexia | 1:326f0b56759b | 18 | |
o_mexia | 1:326f0b56759b | 19 | } |