任意年月日输出 C语言 摘要:解题思路:注意事项:参考代码:#include<stdio.h>inta[13]={0,31,28,31,30,31,30,31,31,30,31,30,31};intmain(){&am…… 题解列表 2024年11月26日 0 点赞 0 评论 107 浏览 评分:9.9
兰顿蚂蚁普通思路 摘要:解题思路:定义俩个方向数组intdx[]={0,1,0,-1};&nbsp;intdy[]={1,0,-1,0};注意事项:主要是定义方向的变量黑色方块(direction+3)%4,即顺时针…… 题解列表 2024年11月26日 0 点赞 0 评论 15 浏览 评分:9.9
3051: 登山 有点难这还是入门题吗? 摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h"using&nbsp;namespace&nbsp;std;int&nbsp;m…… 题解列表 2024年11月26日 0 点赞 0 评论 30 浏览 评分:0.0
灭有感情,全是for//和数学题解//(C语言 摘要:解题思路:for的自增设定注意事项:注释那里可直接代替前个for参考代码:#include<stdio.h>intmain(){inta,b,c,i;floatsum1=0,sum2=0,…… 题解列表 2024年11月26日 1 点赞 0 评论 80 浏览 评分:0.0
遍历每条对角线 摘要:##遍历每条对角线m,n=map(int,input().split())#m行n列ans=0arr=[]for_inrange(m):arr.append([int(i)foriininput().…… 题解列表 2024年11月26日 0 点赞 0 评论 55 浏览 评分:9.9
冒泡排序+多组输入 摘要:解题思路:利用最基本冒泡排序,将数据从小到大进行排列。注意事项:要用多组输入(题目要求)。参考代码:#include<stdio.h>&nbsp;voidbubbleSort(in…… 题解列表 2024年11月26日 0 点赞 0 评论 99 浏览 评分:9.9
超级超级简单的1124 摘要:解题思路:注意事项:参考代码:#include<stdio.h>intmain(){charp[100];scanf("%s",p);for(inti=0;p[i]!=…… 题解列表 2024年11月26日 0 点赞 0 评论 32 浏览 评分:0.0
利用数学思维和for循环来解答,清晰明了 摘要:解题思路:注意事项:参考代码:#include<stdio.h>intmain(){&nbsp;&nbsp;inti,h;&nbsp;&nbsp;doubl…… 题解列表 2024年11月26日 0 点赞 0 评论 29 浏览 评分:0.0
送分了........ 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>intmain(){&nbsp;&nbsp;inta,b;&am…… 题解列表 2024年11月26日 0 点赞 0 评论 29 浏览 评分:0.0
有规律的数列求和 摘要:解题思路:计算n次落地的高度,令高度为m,每次反弹都是原来的一半,所以可以用math.h库中的pow函数来计算0.5的n次方,即m*pow(0.5,n)&nbsp;&nbsp;&…… 题解列表 2024年11月26日 0 点赞 0 评论 59 浏览 评分:0.0