C语言——题解 2906: 笨小猴 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char a[101]; int b[26]={0},i,j; scanf("%s",a); …… 题解列表 2023年01月04日 0 点赞 0 评论 206 浏览 评分:9.9
笨小猴(C语言) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char a[100]; int i,j;; int w; int b[200]={0}…… 题解列表 2022年11月14日 0 点赞 0 评论 366 浏览 评分:9.9
笨小猴,第一次写解析 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>int main(){ char z[101]; scanf("%s",z);//输入一个字符串…… 题解列表 2023年03月14日 0 点赞 0 评论 147 浏览 评分:9.9
笨小猴(看题目说只可能出现小写字母,那就可以创建大小为26的数组存放字母出现的次数) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<string.h> int main() { char a[100]; gets(a); in…… 题解列表 2023年10月25日 0 点赞 0 评论 123 浏览 评分:9.9
c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char str[101]; gets(str); int maxn=0, …… 题解列表 2023年06月12日 0 点赞 0 评论 128 浏览 评分:0.0
2906: 笨小猴 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>int sort(int as[100],int sz){ int max = 0, min =…… 题解列表 2024年02月14日 0 点赞 0 评论 120 浏览 评分:0.0