- 3
What is the answer?????
int age = 25; (age > 17 age < 99) printf("I can drive");
4 ответов
+ 3
Hello TheJTwin
Don't you think you can solve this question of you read the chapter about if else statements again?
You solved so many courses. I don't understand the troubles you have with this question.
Can you explain it to me?
And please add the programming language.
+ 2
int age = 25;
if(age > 17 && age < 99)
printf("I can drive") ;
output:
I can drive
because 25 is in the range[17-99]
hello this is the most basic thing taught in any programming language book, go back and learn the basic again, all the best.
+ 2
int age = 25;
if (age > 17 && age < 99)
printf("I can drive");
0
int age=25;
if(age>17 && age <99)
printf("i can drive");