0
C++ question
#include <iostream> using namespace std; int main() { int age=18; if (age < 18){ cout << "You are child." << endl; if (age >= 18) { cout << you are adult << endl; } return 0; } Plz tell me why is this question don't have output
4 Answers
+ 2
Thanks
+ 1
I try to edit it and I write it well but still showing me no output when I execute