标题:C语言 新手 不知道怎么错了
取消只看楼主
细水长流的爱
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2015-5-3
 问题点数:0 回复次数:1 
C语言 新手 不知道怎么错了
#include<stdio.h>
int max(int a,int b);
main()
{
    int x,y,z;
    int max(int a,int b);
    printf("input two number:\n");
        scanf("%d,%d",&x,&y);
    z=max(x,y);
    printf("maxmum=%d",z);
}
int max(int a,int b);
{
    if(a>b);
        return a;
    else return b;
}
F:\math\math.c(13) : error C2449: found '{' at file scope (missing function header?)
搜索更多相关主题的帖子: function number return C语言 
2015-05-03 19:33
细水长流的爱
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2015-5-3
得分:0 
int max(int a,int b);去掉;
2015-05-03 19:59



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




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

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