解题思路:
注意事项:
参考代码:
#include<iostream>
#include<set>
using namespace std;
int main(){
int a,z;
multiset <int> s;
while(cin>>a){
if(a==-1) break;
s.insert(a);//将输入的数(a)插入容器s中,同时自动排序
}
multiset<int>::iterator i;//建立迭代器
z=*s.begin();//令z为容器首数
for(i=s.begin() ;i!=s.end() ;i++)//迭代器进行遍历容器中的数
{
if(*i>z)
{
z=*i;
}
}
printf("%d",z);
}
0.0分
0 人评分
C语言程序设计教程(第三版)课后习题10.4 (C语言代码)浏览:943 |
【矩阵】 (C++代码)浏览:999 |
A+B for Input-Output Practice (VI) (C语言代码)浏览:575 |
杨辉三角 (C语言代码)浏览:505 |
C二级辅导-分段函数 (C语言代码)浏览:659 |
矩阵的对角线之和 (C语言代码)浏览:1401 |
C语言程序设计教程(第三版)课后习题6.4 (C语言代码)浏览:381 |
A+B for Input-Output Practice (I) (C语言代码)浏览:621 |
Manchester- 陶陶摘苹果浏览:4838 |
纪念品分组 (C语言代码)浏览:897 |