2903: 不高兴的津津 摘要:解题思路:注意事项:参考代码:#include <stdio.h> int main() { int a[8] = {0}, n = 0, max = 0, ans = 0; …… 题解列表 2022年11月07日 0 点赞 0 评论 394 浏览 评分:0.0
2864: 单词替换 摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <string.h> int main() { int n = 0; char s[10…… 题解列表 2022年11月07日 1 点赞 0 评论 654 浏览 评分:7.7
2917: 奇数单增序列 摘要:解题思路:注意事项:参考代码:#include <stdio.h> int main() { int n = 0, a[505] = {0}, q = 0; scanf("%d…… 题解列表 2022年11月07日 0 点赞 0 评论 369 浏览 评分:0.0
2918: 成绩排序 摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <string.h> int main() { int n = 0, b[25] = {0}; …… 题解列表 2022年11月07日 0 点赞 0 评论 878 浏览 评分:9.9
国服韩信教你敲代码 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int fun(int n){ int i; for(i=2;i*i<=n;i++) …… 题解列表 2022年11月07日 0 点赞 0 评论 451 浏览 评分:9.9
python解答 凑字数..,.,..,.,.. 摘要:解题思路:注意事项:参考代码:sum=0 for a in range(0,1001): sum=sum+a print(sum)…… 题解列表 2022年11月07日 0 点赞 2 评论 397 浏览 评分:9.9
简单易懂自定义函数之字符反串 摘要:解题思路:定义一个函数,计算出字符串长度n,赋值i=n-1(长度是n但是最后一项是a[n-1]) 设置for循环 i从n-1开始一直到0,输出a[i]注意事项:strlen函数:计算字符串位数 字符串…… 题解列表 2022年11月07日 0 点赞 0 评论 363 浏览 评分:9.9
3个数找最大值 摘要:解题思路:#include<stdio.h>int main(){ int a,b,c,d; scanf("%d%d%d",&a,&b,&c); d=a>b?a:b; d=d>…… 题解列表 2022年11月07日 0 点赞 0 评论 417 浏览 评分:8.7
回文判断(字符串比较)+ 踩坑经过 摘要:解题思路: 回文数:是从左到右读和从右到左读都一样的数字。 思路:既然题目要求使用字符串来解决,无非就是字符串的比较问题。先使用一个for循…… 题解列表 2022年11月07日 0 点赞 1 评论 406 浏览 评分:0.0
c语言蓝桥杯1446题解 摘要:解题思路:由题意能看出是求三个数的最小公倍数.关键就是把三给数的最小公倍数代码写出就可以解了.注意事项:可以先把最大公约数求出,再把算出最小公倍数,最后调用函数.参考代码:#include<stdio…… 题解列表 2022年11月07日 0 点赞 0 评论 289 浏览 评分:0.0