注册 登录
编程论坛 VC++/MFC

编程错误 求解

TerrorBlade 发布于 2011-04-21 15:22, 475 次点击
int max(int a,int b);
main()
{
    int x,y,z;
int max(int a,int b);
    printf("input two numbers:\n");
scanf("%d %d",&x,&y);
    z=max(x,y);
    printf("maxmum=%d",z);
}
int max(int a,int b)
{
    if(a>b)returm a;else returm b;
}

错误:E:\VC++\Project\Dos Tf H1\H1.CPP(13) : error C2146: syntax error : missing ';' before identifier 'b'
执行 cl.exe 时出错.
7 回复
#2
一点2011-04-21 20:44
主函数没有void修饰,return不是returm
试试这个!!
#include <iostream>
#include <cstring>
using namespace std;
int max(int a,int b);
void main()
{
    int x,y,z;
int max(int a,int b);
    printf("input two numbers:\n");
scanf("%d %d",&x,&y);
    z=max(x,y);
    printf("maxmum=%d",z);
    getchar();
}
int max(int a,int b)
{
    if(a>b)return a;else return b;
}

#3
TerrorBlade2011-04-21 21:00
回复 2楼 一点
能解释一下么  我不太懂 刚刚学c
#4
蓝色已逝海2011-04-22 22:38
#include<iostream>
int max(int a,int b);
void main()
{
    int x,y,z;
    int max(int a,int b);
    printf("input two numbers:\n");
    scanf("%d %d",&x,&y);
    z=max(x,y);
    printf("maxmum=%d\n",z);
}
int max(int a,int b)
{
    if(a>b)
        return a;
    else
        return b;
}
#5
爱海松涛2011-04-24 09:51
同意
#6
血色圣光2011-04-24 21:30
回复 楼主 TerrorBlade
na  ge  void   yao  bu  yao  dou  mei  guan xi.....
#7
血色圣光2011-04-24 21:31
回复 2楼 一点
na  ge  void  yao  bu  yao  dou  mei  you  guan  xi  
#8
爱海松涛2011-04-26 13:26
回复 2楼 一点
void可以没有。。在运行时候系统可以自己加上去的
1