有没有大佬会?

#include<stdio.h>
int main(){
int a=2,b=4,c=6,d=0;
if(a>b)
if(c>b) d=c;
else d=b;
printf("%d%d%d%d\n",a,b,c,d);
return 0;
}

相似回答