c语言问题
这段代码怎样我的电脑运行不出来?安全管家还认为是病毒。
#include<stdio.h>
int max(int x,int y){
int t;
if(x>y) t=x;
else t=y;
return(t);
}
int main(){
int a,b,m;
scanf("%d%d",&a,&b);
printf("a=%d,b=%d\n",a,b);
m=max(a,b);
printf("The max is%d\n",m);
}
这段代码怎样我的电脑运行不出来?安全管家还认为是病毒。
#include<stdio.h>
int max(int x,int y){
int t;
if(x>y) t=x;
else t=y;
return(t);
}
int main(){
int a,b,m;
scanf("%d%d",&a,&b);
printf("a=%d,b=%d\n",a,b);
m=max(a,b);
printf("The max is%d\n",m);
}
2017-10-11
举报