#include//包含头文件#includevoidmain(){ intnum; printf("Pleaseenter:");//输出一句话 scanf("%d",&num);//输入数据 printf("Yousenteris:%d",num);//输出用户的输入的数据 getch();}