码迷,mamicode.com
首页 > 其他好文 > 详细

寻找超大数字中的最大值

时间:2019-10-29 11:42:54      阅读:84      评论:0      收藏:0      [点我收藏+]

标签:int   return   col   namespace   end   i++   for   temp   color   

 1 #include<bits/stdc++.h>  
 2 using namespace std;
 3 
 4 int main() {
 5     int n, c=1;
 6     cin >> n;
 7     string max, temp;
 8     cin >> max;
 9     for (int i = 2; i <= n; i++) {
10         cin >> temp;
11         if (max.size() < temp.size() || (max.size() == temp.size() && max < temp)) {
12             c = i;
13             max = temp;
14         }
15     }
16     cout << c << endl << max;
17     return 0;
18 }

 

寻找超大数字中的最大值

标签:int   return   col   namespace   end   i++   for   temp   color   

原文地址:https://www.cnblogs.com/zyyz1126/p/11757636.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!