标签:http mes space ace max 个数 学生 i++ ios
#include<iostream> using namespace std; int main() { float max,x; int i; cout<<"请输入第1个数:"; cin>>x; max=x; i=2; for(;i<=10;i++) { cout<<"请输入第"<<i<<"个数:"; cin>>x; if(x>max) max=x; } cout<<"最大的数:"<<max; return 0; }
链接:https://pan.baidu.com/s/1FfOirxJ9rrY7rxtHUM4W_A
提取码:uqm9
标签:http mes space ace max 个数 学生 i++ ios
原文地址:https://www.cnblogs.com/kixiaoyuan/p/12695133.html