#include <stdio.h> //编译预处理指令
int main() //程序入口主函数main
{ //程序(函数、功能开始标志)
//你要写的代码//
return 0; //程序退出前返回给调用者(操作系统)的值
} //程序(函数、功能结束标志)
#include <stdio.h> //编译预处理指令
int main() //程序入口主函数main
{ //程序(函数、功能开始标志)
//你要写的代码//
return 0; //程序退出前返回给调用者(操作系统)的值
} //程序(函数、功能结束标志)