/*小小加法计算器*/=函数功能说明;(多行)
//=注释;(一行)
P8
比较
#include <stdio.h>int main(){ int a=10,b=20; if(a<b) printf("a比b小!"); return 0; }