Answers for "how to do if command in c++"

C++
0

how to do if command in c++

#include <iostream>

include namespace std;

int main() {
	int flourBagCount = 16;

 	if (flourBagCount < 15) {
		cout << "There are not enough bags of flour in inventory."
	} else {
		cout << "There are enough bags of flour in inventory."
	}
}
Posted by: Guest on August-19-2021

Browse Popular Code Answers by Language