小学生c++编程资料
链接:https://pan.baidu.com/s/1FfOirxJ9rrY7rxtHUM4W_A
提取码:uqm9
#include<iostream> using namespace std; int main() { float a,b,c,temp; cout<<"a,b,c="; cin>>a>>b>>c; if(a>b) { temp=a; a=b; b=temp; } if(a>c) { temp=a; a=c; c=temp; } if(b>c) { temp=b; b=c; c=temp; } cout<<a<<‘ ‘<<b<<‘ ‘<<c<<endl; //‘ ‘中间有一个空格 return 0; }
原文地址:https://www.cnblogs.com/kixiaoyuan/p/12694989.html
时间: 2024-09-29 11:38:54