标签:class 程序设计 位置 hang 设计 hello 浙大 lock ret
zhangqq
2020,5,31
悦来
浙大MOOCC《语言程序设计CAP》,翁恺
#include <stdio.h>
int main()
{
printf("Hello World\n");
return 0;
}
//每一行必须有分号,分号可以空格和换行
#include <stdio.h>
int main()
{
printf("12+34=%d\n", 12+34);//%d表示后面有个整数要输出在这个位置上
return 0;
}
输出:12+34=46
标签:class 程序设计 位置 hang 设计 hello 浙大 lock ret
原文地址:https://www.cnblogs.com/zhangqq02/p/12996949.html