最赞回答 / super哈哈
#include<stdio.h>int main(){int a ;scanf("请输入一个整数:%d ",&a);//用键盘给变量a赋值printf("输入的整数为:%d/n",a); //输出a的值return 0;}
2017-02-06
最新回答 / 慕粉1117086091
关键字就是C语言规定好的有固定用途的标识符 auto break case char const continue default do double else enum extern float for goto if int long register return short signed static sizeof struct switch typedef union unsigned void volatile while这些都是
2017-02-05