1.运行程序
#include "stdio.h"
void main()
{
int x,y,w,z;
printf("please input three number:\n");
scanf("%d,%d,%d",&x,&y,&w);
z=max(x,y,w);
printf("The max number is %d",z);
printf("\n");
printf("ID number:2013304125");
}
int max(int a,int b , int c,int n)
{
n=a;
if (a<b) n= b;
if (b<c) n= c;
return n;
}
2.运行结果
3.总结
在运行的时候输入数据是要与编写程序的符号一致如 int x,y,w,z;是用逗号隔开的运行输入数据是也要用逗号隔开否则会出现错误信息。