标题:大神们能不能帮我看看这个程序有什么问题
取消只看楼主
计算机好难啊
Rank: 1
等 级:新手上路
帖 子:33
专家分:8
注 册:2020-3-28
结帖率:25%
 问题点数:0 回复次数:0 
大神们能不能帮我看看这个程序有什么问题
#include "stdio.h"
void main()
{ int i=1,n;
  n=f(i,++i);
  printf("\nn=%d\n",n);
}
f(int a,int b)
{ int c;
   if(a>=b)
      c=1;
   else
      c=0;
   return(c);
}
我照着书上打的,我也不知道为什么,用vc++6.0,下面显示这些东西
--------------------Configuration: 1352 - Win32 Debug--------------------
Compiling...
1352.cpp
D:\CloudMusic\1352\1352.cpp(4) : error C2065: 'f' : undeclared identifier
D:\CloudMusic\1352\1352.cpp(8) : error C2373: 'f' : redefinition; different type modifiers
D:\CloudMusic\1352\1352.cpp(14) : fatal error C1004: unexpected end of file found
执行 cl.exe 时出错.

1352.exe - 1 error(s), 0 warning(s)
搜索更多相关主题的帖子: fatal int exe cpp unexpected 
2020-04-03 11:00



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-500829-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.019348 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved