利用scanf的特性 摘要:解题思路:注意事项:注意最后一个单词有 . 号参考代码:#include<stdio.h>#include<string.h>int main(){ char str[1000][500]; int …… 题解列表 2023年01月23日 0 点赞 0 评论 222 浏览 评分:9.0
c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char str[501]; gets(str); str…… 题解列表 2023年06月11日 0 点赞 0 评论 148 浏览 评分:0.0
2961-最长单词 摘要:解题思路:采用结构体解决问题注意事项:参考代码:struct Test{ char s[101]; int n; }; int main(){ struct Test test[500…… 题解列表 2023年06月21日 0 点赞 0 评论 117 浏览 评分:0.0
2961最长字符串 摘要: ### 题目解析 使用while cin以空格结束,把一句话分成多个小字符串,判断每一个长度。 最后一个删掉最后一个字符. #include using namespac…… 题解列表 2024年01月05日 0 点赞 0 评论 135 浏览 评分:9.9
一段一段来判断长度 摘要:``` #include #include #include #include using namespace std; int main() { string s,c;…… 题解列表 2024年01月06日 0 点赞 0 评论 84 浏览 评分:0.0
最长单词2(C语言,短小精悍) 摘要:解题思路:可以用两个数组a,b,因为%s是不收取空格,用while循环每次获取一段,然后对比当然也可以用二维数组注意事项:参考代码:#include<stdio.h> #include<string…… 题解列表 2024年01月09日 1 点赞 0 评论 186 浏览 评分:0.0