|
今天编写仂一个简单的程序;
/*2.c*/
#include<stdio.h>
void main(){
inti,j=0;
for (i=1;i<100;i++)
{
if (i%2==0||i%3==0)
continue;
printf("%4d",i);
J++;
if (J%10==0)
printf("\n");
}
printf("\n");
}
其中的大写的J是小写的,不知道为什么键盘不能输入!!
gcc 2.c -o 2
然后
2.c:1:16:stdio:Nosuch file or directory
2.c :In function'main'
2.c:2:warning :return type of 'main' is not 'int'
2.c:7:continue statement not within a loop
不知道是什么原因??我刚学C语言,对linux编程不熟悉!!请指教!! |
|