寻找超大数字中的最大值
Posted zyyz1126
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了寻找超大数字中的最大值相关的知识,希望对你有一定的参考价值。
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 }
以上是关于寻找超大数字中的最大值的主要内容,如果未能解决你的问题,请参考以下文章
NC41 最长无重复子数组/NC133链表的奇偶重排/NC116把数字翻译成字符串/NC135 股票交易的最大收益/NC126换钱的最少货币数/NC45实现二叉树先序,中序和后序遍历(递归)(代码片段