English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
所有分類

寫一個C語言程式,讓使用者輸入三個整數後,輸出三個中最大與最小的整數。

不可以用回圈..

請大大幫忙XD

謝謝

2007-10-20 15:44:45 · 2 個解答 · 發問者 Anonymous in 電腦與網際網路 程式設計

目前只能用到if和else....

2007-10-20 16:44:20 · update #1

cout<<"a=";
cin>>a;

這是啥= =??

2007-10-20 16:45:48 · update #2

2 個解答

以下是完整的程式碼

#include
using namespace std;

void main(){
int a,b,c,max,min;

cout<<"a=";
cin>>a;

cout<<"b=";
cin>>b;


cout<<"c=";
cin>>c;

max=a;
min=a;
if((b>a) & (b>c))
max=b;
else if((c>b) & (c>a))
max=c;

if((b min=b;
else if((c min=c;

cout<<"Max="<
}

2007-10-20 16:30:42 · answer #1 · answered by 小白 5 · 0 0

#include
#include
int main(int argc, char* argv[]){
//=====START=====//
int x,y,z;
printf("Input 3 numbers: "),scanf("%d %d %d",&x,&y,&z);
printf("Max= %d\n",(x>y?(x>z?x:z):(y>z?y:z)));
printf("Min= %d\n",(x //=====END=====//
system("PAUSE");
return 0;
}

2007-10-20 16:39:28 · answer #2 · answered by Big_John-tw 7 · 0 0

fedest.com, questions and answers