题解 1232: 查找最大元素

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

查找最大元素 (C++代码)水一下

摘要:  水一下,其实可以更多利用字符串比较的相关内容的...题目考的太浅没办法参考代码:#include<bits/stdc++.h> using namespace std; int main(){……

查找最大元素 (C++代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>  #include<string.h>  int main()  {      char max,str[101];      int……

查找最大元素 (C++代码)

摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cstring> using namespace std; char a[105]; int main()……

1232: 查找最大元素

摘要:```cpp #include #include using namespace std; int main() { string str; while(cin>>str……