c代码记录之数字游戏 摘要:本质上是一道挺水的题,浅表做题过程 n: 报数人数 k:报到(k-1)时,下一次从0开始报数 t:栋栋报过的次数 sum:栋栋报过的数之和 find 1 假设不从零重报,第m次报数…… 题解列表 2023年12月21日 1 点赞 0 评论 270 浏览 评分:0.0
利用二位数组求解 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main{ /** * @param args */ public static void m…… 题解列表 2023年12月21日 0 点赞 0 评论 170 浏览 评分:0.0
最长最短单词(用二维数组存储,把每个单词分隔开来,就好做多了) 摘要:参考代码: ```c #include #include int main() { char a[201][101]; int k=0; int max=0,max_index=…… 题解列表 2023年12月20日 0 点赞 0 评论 223 浏览 评分:9.9
密码破译(c语言) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char str[5]; int i; scanf("%s",str); for(i=0…… 题解列表 2023年12月20日 0 点赞 0 评论 153 浏览 评分:0.0
三数找最大(c语言) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c,max; scanf("%d %d %d",&a,&b,&c); max=…… 题解列表 2023年12月20日 0 点赞 0 评论 160 浏览 评分:0.0
Hello World (c语言) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ printf("**************************\n"); printf("Hello Wo…… 题解列表 2023年12月20日 0 点赞 0 评论 178 浏览 评分:9.9
多组a+b求和(c语言) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b; while(scanf("%d %d",&a,&b)!=EOF) { …… 题解列表 2023年12月20日 0 点赞 0 评论 240 浏览 评分:0.0
血压,雪鸭,学鸭 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n;//行数 scanf("%d",&n); int i,j=0,k=0; int a,b; int c…… 题解列表 2023年12月20日 0 点赞 0 评论 181 浏览 评分:0.0
本菜鸟的分离,大佬们过目 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[9],i,n,x; scanf("%d",&x); for(i=0;i<10;i+…… 题解列表 2023年12月20日 0 点赞 0 评论 212 浏览 评分:0.0
一个while循环 摘要:解题思路:一个while循环注意事项:y<=k参考代码:#include<stdio.h>int main(){ double a,b,y; int k; scanf("%d",&k); …… 题解列表 2023年12月20日 0 点赞 0 评论 230 浏览 评分:0.0