c语言入门教程–-5判断语句

时间:2021-04-13 12:15:37   收藏:0   阅读:0

技术图片

#include<stdio.h>
int main()
{
int a=1;
int b=1;
if(a==b)
{
	printf("相等");
}
else
{
	printf("不相等");
}
return 0;
}
评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!