2.4.5 Một số biểu thức logic
Các biểu thức điều kiện sau là tương đương nhau → Variable > 0 tương đương với !(Variable <= 0) Variable != 0 tương đương với !(Variable == […]
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
#include <iostream> using namespace std; int main(void) { int number; int max = -100000; int counter = 0; do { cin >> number; if(number == -1) { continue; } counter++; if(number > max) { max = number; } } while (number != -1); if(counter) { cout << "The largest number is " << max << endl; } else { cout << "Are you kidding? You haven't entered any number!" << endl; } return 0; } |
1 2 3 |
for( ; ; ) { /* the body goes here */ } |
Copyright © 2024 CppDeveloper by Phạm Minh Tuấn (SHUN)