1026: [编程入门]数字逆序输出 摘要:解题思路:简单注意事项:无参考代码:#include<stdio.h>int main(){ int a,b,c,d,e,f,g,h,i,j; scanf("%d %d %d %d %d …… 题解列表 2022年01月13日 0 点赞 1 评论 195 浏览 评分:6.0
连续自然数和 (Java代码) 摘要:import java.util.Scanner; public class Main { public static void main(String[] args) { Scan…… 题解列表 2022年01月13日 0 点赞 0 评论 272 浏览 评分:6.0
树状数组求解-求逆序对 摘要:```cpp #include #include using namespace std; #define lowbit(x) ((x) & -(x)) const int N=1e5+5;…… 题解列表 2022年01月14日 0 点赞 0 评论 715 浏览 评分:6.0
简单易懂的递归倒置字符数组 摘要:#include #include #include using namespace std; int n; string s; void swapalpha(int r,int l) {…… 题解列表 2022年01月16日 0 点赞 0 评论 345 浏览 评分:6.0
[编程入门]三个数的最大值python 摘要:解题思路:注意事项:参考代码:a,b,c = map(int,input(),split) print(max(a,b,c))…… 题解列表 2022年01月16日 0 点赞 0 评论 503 浏览 评分:6.0
[编程入门]温度转换 摘要:解题思路:注意事项:参考代码:f = float(input())c = 5*(f-32)/9print('c=%.2f'%c)…… 题解列表 2022年01月17日 0 点赞 0 评论 475 浏览 评分:6.0
[编程入门]分段函数求值python 摘要:解题思路:注意事项:参考代码:x = int(input())if x < 1: y = xelif 1 <= x < 10: y = 2*x - 1elif x >= 10: y …… 题解列表 2022年01月17日 0 点赞 0 评论 480 浏览 评分:6.0
[编程入门]成绩评定python 摘要:解题思路:注意事项:参考代码:n = int(input())m = ''if n < 60: m = 'E'elif n < 70: m = 'D…… 题解列表 2022年01月17日 0 点赞 0 评论 414 浏览 评分:6.0
[编程入门]数字的处理与判断python 摘要:解题思路:注意事项:参考代码:number = input()a = str(number) #将输入的数转化为字符串形式print(len(a)) #转化后…… 题解列表 2022年01月17日 0 点赞 0 评论 260 浏览 评分:6.0
Cylinder题解,简单清晰 摘要:解题思路:注意事项:参考代码:from math import *w,h=map(float,input().split())while w: v=[] r=h/(pi+1)/2 i…… 题解列表 2022年01月19日 0 点赞 0 评论 465 浏览 评分:6.0