直接上代码:
#include
#include
int main(void) {
int test[3];
printf("请输入3个整数\n");
for(int i=0; i<3; i++) {
printf("第 %d 个 ",i+1);
scanf("%d",&test[i]);
}
printf("最大数 %d\n", (test[0] > (test[1] > test[2] ? test[1] : test[2]) ? test[0] : (test[1] > test[2] ? test[1] : test[2])));
printf("最小数 %d\n", (test[0] < (test[1] < test[2] ? test[1] : test[2]) ? test[0] : (test[1] < test[2] ? test[1] : test[2])));
return 0;
}
#include
using namespace std;
int main()
{
int a,b,c;
cin>>a>>b>>c;
cout<<"最大值:"<<((a>b?a:b)>c?a>b?a:b:c)<<" 最小值:"<<((areturn 0;
}
#include
using namespace std;
int main()
{
int a,b,c,d,m;
cout>>“请输入个数:”
cin>>a>>b>>c;
m=a;
if(b>a)
{
b=m;
}
if(c>a)
{
c=m;
}
cout<
#include
int main(){
int a[10];
int i,min,max;
while(cin >> a[i]){
min=a[0];
max=a[1];
if(a[0] > a[1]) { min=a[1]; max=a[0]; }
else if(a[2] < a[0]) { min=a[2];}
else if(a[2] > a[1]) { max=a[2]; }
else{;}
}
cout << "最大值:" << max <
}