求《C语言程序设计》第四版,谭浩强编,清华大学出版社 课后习题答案

2024年11月27日 21:03
有4个网友回答
网友(1):

#include
int main(){
fload a[3];
scanf("%f,%f,%f",&a[0],&a[1],&a[2]);
float temp;
if(a[0]>a[1]){
temp = a[0];
a[0] = a[1];
a[1] = temp;
}
if(a[1]>a[2]){
temp = a[1];
a[1] = a[2];
a[2] = temp;
}
if(a[0]>a[1]){
temp = a[0];
a[0] = a[1];
a[1] = temp;
}
print("%f %f %f \n", a[0],a[1],a[2]);

}

网友(2):

去课后答案网吧,但好像要做任务

网友(3):

有第四版,自己写出来再运行一下看看不就行了,有错的话自然会有提示的

网友(4):

只有第三版的,木有第四版的