定义了函数,但不知道怎么回事,说是缺少头文件
#include<stdio.h>#include<windows.h>#include<math.h>intccdo(intx1,intx2,intx3,intx4,i...
#include <stdio.h> #include<windows.h> #include <math.h> int ccdo(int x1,int x2,int x3,int x4,int x5); int main() { int a,b,c,d,e,f; printf("请输入5个不相等的整数,格式如:1,2,3,4,5 \n"); scanf("%d,%d,%d,%d,%d",&a,&b,&c,&d,&e); f=ccdo(a,b,c,d,e); printf("最大数是:%d \n",f); system("pause"); } int ccdo(int x1,int x2,int x3,int x4,int x5); { int x6; if(x1>x2) { x6=x1; } else { x6=x2; } if (x3>x6) { x6=x3; } if (x4>x6) { x6=x4; } if (x5>x6) { x6=x5; } return x6; } 错误如下: C:\Documents and Settings\Administrator\桌面\My C\1\1.cpp(16) : error C2447: missing function header (old-style formal list?)
展开
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询