/*
这是
多行注释
*/
//单行注释
#include<stdio.h> //导入包
//主函数入口
int main(void)
{
int num;
num = 1;
//输出语句
printf("I am a simple");
printf("computer.\n"); //\n是换行
printf("My favorite number is %d because it is first.\n",num);
return 0;
}
第一个程序学习了c语言的基本结构和注释的方法。
注释很重要,后续写代码都需要注释