编写一个程序,允许用户在年龄大于18岁时开车并且他/她有保险。 (使用嵌套的if和bool数据类型)
我已经尝试了很多但是turbo c ++没有声明bool数据类型。请为此写一个简单的代码。
答案 0 :(得分:0)
我不确定我是否正确地提出了问题,但这是我的回答......
这是功能:
bool allowedDriving(int age){
if(age >= 18){
return true;
}
else{
return false;
}
}
这是来自main()的调用:
int main(void){
int age = 20;
if(allowedDriving(age)){
printf("allowed\n");
}else{
printf("not allowed\n");
}
}