how to do if command in c 2b 2b

Solutions on MaxInterview for how to do if command in c 2b 2b by the best coders in the world

showing results for - "how to do if command in c 2b 2b"
Perry
19 Oct 2018
1#include <iostream>
2
3include namespace std;
4
5int main() {
6	int flourBagCount = 16;
7
8 	if (flourBagCount < 15) {
9		cout << "There are not enough bags of flour in inventory."
10	} else {
11		cout << "There are enough bags of flour in inventory."
12	}
13}
similar questions
queries leading to this page
how to do if command in c 2b 2b