fenby C语言 p7

/*小小加法计算器*/=函数功能说明;(多行)

//=注释;(一行)

P8

比较

#include <stdio.h>
int main()
{
int a=10,b=20;
if(a<b)
printf("a比b小!");
return 0;
}

原文地址:https://www.cnblogs.com/amiaojiang/p/4501978.html