码迷,mamicode.com
首页 > 其他好文 > 详细

c if 判断

时间:2018-10-28 11:25:48      阅读:168      评论:0      收藏:0      [点我收藏+]

标签:新建   printf   stdio.h   提示   scanf   const   ons   出名字   \n   

#include <stdio.h>

int main(int argc, char **argv) {

\\新建两个变量给变量赋值跟初始化;
const int a=45;
int c=0;

\\给与提示和输出名字;
printf("请输入你的姓名:");
scanf("%d",&c);
printf("你的年龄是%d岁\n",c);

\\判断输入的年龄是不是小于小于变量a 小于就执行 大于就跳过执行最后一句输出;
if(c<a){printf("年轻是美好的。");
};


printf("年龄决定了你还能活多久,加油吧骚年。\n");


return 0;
}

c if 判断

标签:新建   printf   stdio.h   提示   scanf   const   ons   出名字   \n   

原文地址:https://www.cnblogs.com/ligouhai/p/9864575.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!