+ 2
#include <iostream> using namespace std; int main(){ int age; cout<<"Please enter age"; cin>>age; int group; while(ag
how to solve it
1 Resposta
+ 3
I don't know what Output you expecting through this program please clarify your question i have completed your code but solve for printing age if you tell your input and output format then we will try to help out.
See this program
#include <iostream>
using namespace std;
int main(){
int age;
cout<<"Please enter age";
cin>>age;
cout<<"Entered age is ="<<age;
return 0;
}