LinuxSir.cn,穿越时空的Linuxsir!

 找回密码
 注册
搜索
热搜: shell linux mysql
查看: 1061|回复: 1

第一次用linux编程就遇到问题!!

[复制链接]
发表于 2002-11-17 11:45:19 | 显示全部楼层 |阅读模式
今天编写仂一个简单的程序;
/*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编程不熟悉!!请指教!!
发表于 2002-11-17 13:08:05 | 显示全部楼层
相关知识都在程序版块,一会会把此帖转过去,请看论坛公告和本版说明,谢谢。
gcc -o 2 2.c
您需要登录后才可以回帖 登录 | 注册

本版积分规则

快速回复 返回顶部 返回列表