hmz 发表于 2014-8-12 10:46:57

求大神解释????

#include,stdio.h>
int main(){
        int, total=;
        for(i=1;i=<100; i++){
                total+=i;
        }
        printf("1+2+3+...+99+100=%d\n", total);
        return0;
}
那里错啦求大神解释??
c:\documents and settings\administrator\桌面\helloworde\helloworde.c(7) : error C2143: syntax error : missing '{' before 'string'
c:\documents and settings\administrator\桌面\helloworde\helloworde.c(7) : error C2059: syntax error : '<Unknown>'
c:\documents and settings\administrator\桌面\helloworde\helloworde.c(7) : error C2059: syntax error : ')'
c:\documents and settings\administrator\桌面\helloworde\helloworde.c(9) : error C2059: syntax error : '}'
执行 cl.exe 时出错.
helloworde.obj - 1 error(s), 0 warning(s)
提示的什么看不懂??

machimilk 发表于 2014-8-12 10:53:51

#include,stdio.h> 改成#include <stdio.h>
int, total=; 改成 int total=0;

hmz 发表于 2014-8-12 11:05:50

machimilk 发表于 2014-8-12 10:53
#include,stdio.h> 改成#include
int, total=; 改成 int total=0;

#include<stdio.h>
int main(){
        int i, total=0;
        for(i=1;i<=100; i++){
                total+=i;
        }
        printf("1+2+3+...+99+100=%d\n", total);
        return=0;
}
改啦还是不行啊

yvqiang 发表于 2014-8-12 11:12:02

本帖最后由 yvqiang 于 2014-8-12 11:14 编辑

hmz 发表于 2014-8-12 11:05
#include
int main(){
      int i, total=0;

我的可以,你再试试:
#include<stdio.h>

int main()
{
    int i, total=0;
      
    for(i = 1;i <= 100; i++)
    {
      total += i;
    }
      
    printf("1+2+3+...+99+100=%d\n", total);
   
    return 0;
   
}http://bbs.fishc.com/data/attachment/album/201408/12/111416i1salzlmjmjy8lm6.jpg


hmz 发表于 2014-8-12 11:19:06

yvqiang 发表于 2014-8-12 11:12
我的可以,你再试试:

--------------------Configuration: helloworde - Win32 Debug--------------------
Compiling...
helloworde.c
C:\Documents and Settings\Administrator\桌面\helloworde\helloworde.c(8) : error C2143: syntax error : missing ';' before '='
C:\Documents and Settings\Administrator\桌面\helloworde\helloworde.c(8) : warning C4033: 'main' must return a value
执行 cl.exe 时出错.

helloworde.obj - 1 error(s), 0 warning(s)
不行

yvqiang 发表于 2014-8-12 11:25:14

本帖最后由 yvqiang 于 2014-8-12 11:26 编辑

hmz 发表于 2014-8-12 11:19
--------------------Configuration: helloworde - Win32 Debug--------------------
Compiling...
hel ...
那很有可能是你的vc问题了,我复制的,可以运行:
http://bbs.fishc.com/data/attachment/album/201408/12/112353x1yvdva0v0f6szsn.jpg

hmz 发表于 2014-8-12 11:26:45

yvqiang 发表于 2014-8-12 11:25
那很有可能,是你的vc问题了,我复制的,可以运行:

我复制也是可以运行可是到自己编的时候就执行出错,

machimilk 发表于 2014-8-12 11:35:49

hmz 发表于 2014-8-12 11:05
#include
int main(){
      int i, total=0;

return=0;改成 return 0;

编辑的时候认真点 就不会出现那么多错误

hmz 发表于 2014-8-12 11:39:17

machimilk 发表于 2014-8-12 11:35
return=0;改成 return 0;

编辑的时候认真点 就不会出现那么多错误

好的谢啦
页: [1]
查看完整版本: 求大神解释????