程序代码:
#include<stdio.h>
int main(void)
{
printf("Hello,world!\n");
return 0;
}
书上说刚开始练习要背格式,可能你忘了给返回值了吧。
程序代码:
#include<stdio.h>
int main(void)
{
printf("Hello,world!\n");
return 0;
}
2015-10-20 09:29
2015-10-20 09:31

2015-10-20 11:29
程序代码:#include <stdio.h>
main()
{
printf("hello,world!\n");
getch();
}
再试试这个吧,不行我也没法了233

2015-10-20 11:38


2015-10-20 12:14