解题思路:
注意事项:
参考代码:
#include <iostream> using namespace std; int main() { string str="",max=""; while(1){ cin>>str;//输入 int len=str.length(); if(len>max.length()){//更新最长数组 max=str; } if(cin.get()=='\n') break;//跳出死循环条件 } cout<<max<<endl;//输出 return 0; }
0.0分
1 人评分
C二级辅导-计负均正 (C语言代码)浏览:607 |
C语言程序设计教程(第三版)课后习题5.7 (C语言代码)浏览:748 |
printf基础练习2 (C语言代码)浏览:648 |
简单的a+b (C语言代码)浏览:827 |
哥德巴赫曾猜测 (C语言代码)浏览:1151 |
大小写转换 (C语言代码)浏览:904 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:400 |
A+B for Input-Output Practice (IV) (C语言代码)浏览:484 |
C语言程序设计教程(第三版)课后习题6.1 (C语言代码)浏览:770 |
1014题解浏览:524 |