+ 1
C++(How to make a program to show that if your age is above 12 so you can )(if not you cannot) please solve this problem in c++
help
4 Respuestas
+ 11
age =13;
if(age>12)
{
//true block;
}
else
{
false block
}
+ 6
You asked the same question yesterday and somebody gave you the solution in python, which is 95% identical to the solution in C++. You just needed to change if age > 12: to if(age > 12). You won't learn anything if you ask others to think for you all the time.
+ 2
thanks bro
+ 2
thanks