自定义函数之数字分离 摘要:解题思路:注意事项:注意审题,是每个数字间用空格隔开参考代码:number = input()for i in number: print(int(i), end = " ")…… 题解列表 2023年11月16日 0 点赞 0 评论 379 浏览 评分:9.9
明明的随机数(C语言) 摘要:解题思路:注意事项:参考代码:#include <stdio.h> // 函数用于对数组 num[] 进行冒泡排序 void sort(int num[], int sz) { i…… 题解列表 2023年11月17日 0 点赞 0 评论 480 浏览 评分:9.9
一样的解法 摘要:MAX = 1000 dp = [[0.0, 0.0] for _ in range(MAX)] a = [0] * MAX n = int(input()) for i in range(1…… 题解列表 2023年11月17日 0 点赞 0 评论 383 浏览 评分:9.9
顶顶顶顶顶顶顶顶 摘要:参考代码:N, B = map(int, input().split()) cow_heights = [int(input()) for _ in range(N)] # 对奶牛身高降序排序…… 题解列表 2023年11月17日 0 点赞 0 评论 433 浏览 评分:9.9
【复杂屎山代码】自定义函数之数字后移 摘要:解题思路:注意事项:参考代码:try: n = int(input()) number = list(map(int, input().split())) m = int…… 题解列表 2023年11月17日 0 点赞 0 评论 354 浏览 评分:9.9
代码的尽头是优雅 摘要:解题思路:分别对这个函数胡三个区间进行校验注意事项:注意保留两位小数参考代码:import java.util.Scanner;public class Main { static Scanne…… 题解列表 2023年11月17日 2 点赞 0 评论 619 浏览 评分:9.9
简单代码6666666666 摘要:解题思路:注意事项:参考代码:print("%0.2f"%((25+15)*(150*2/15)/2))还是用python一行解决方便…… 题解列表 2023年11月17日 0 点赞 0 评论 573 浏览 评分:9.9
结构体之时间设计(小白易懂) 摘要:小白易懂参考代码:#include <stdio.h>int main(int argc, char *argv[]){ struct jsts { int year; int month; int …… 题解列表 2023年11月17日 0 点赞 0 评论 332 浏览 评分:9.9
2831: 画矩形 摘要:``` #include using namespace std; int a,b,d; char c; int main(){ cin>>a>>b>>c>>d; if(d==1){…… 题解列表 2023年11月17日 0 点赞 0 评论 427 浏览 评分:9.9
加密的病历单(清晰明了) 摘要:解题思路:注意事项:参考代码: #include<stdio.h> #include<string.h> //反转数组 void reverseArray(char* a, i…… 题解列表 2023年11月17日 0 点赞 0 评论 520 浏览 评分:9.9