python身份证排序解法 摘要:n=int(input().strip())X=[input().strip() for _ in range(n)] #用split函数的话 会放在列表里面,这样排不了序 strip函数拆分字符串返…… 题解列表 2023年02月07日 0 点赞 0 评论 351 浏览 评分:0.0
问就是只会枚举 摘要:#include #define endl '\n' using namespace std; typedef long long i64; typedef int i32; typedef…… 题解列表 2023年02月07日 0 点赞 0 评论 419 浏览 评分:0.0
第一次题解 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[10]={0}; int i,j,x; for(i=0;i<9;i++){ scanf("%…… 题解列表 2023年02月07日 0 点赞 0 评论 262 浏览 评分:0.0
题解 1013: [编程入门]Sn的公式求和 摘要:参考代码:n = int(input()) i = 1sn = 0while i <= n : sn += int(str(2)*i) i += 1print(sn)…… 题解列表 2023年02月07日 0 点赞 0 评论 286 浏览 评分:0.0
题解 1014: [编程入门]阶乘求和 摘要:解题思路:注意事项:参考代码import math #导入模块def main(n): #定义函数 return math.factorial(n)n = int(input())sn = …… 题解列表 2023年02月07日 0 点赞 0 评论 259 浏览 评分:0.0
结构体简化排序 摘要:解题思路:用结构体方式储存字符串以及字符串的长度 可以更方便地进行排序注意事项:参考代码:typedef struct str{ char str[101]; int len;}st;int main…… 题解列表 2023年02月07日 0 点赞 0 评论 408 浏览 评分:0.0
2808: 买房子 摘要:解题思路:注意事项:参考代码:a = 200n,k = map(int,input().split())for i in range(1,22): if i > 20: print…… 题解列表 2023年02月07日 0 点赞 0 评论 474 浏览 评分:0.0
2068: [STL训练]Ignatius and the Princess IV (C++) 摘要:解题思路: 读入,排序,最中间的数即为所求注意事项: 无参考代码:#include <iostream> // #include <sstream> // #include <cstdio> #…… 题解列表 2023年02月07日 0 点赞 0 评论 251 浏览 评分:0.0
3000: 交换值 摘要:解题思路:注意事项:参考代码:a,b = map(int,input().split())c = a ; a = b ; b = cprint(a,b)…… 题解列表 2023年02月07日 0 点赞 0 评论 385 浏览 评分:0.0
C语言训练:阿姆斯特朗数 格式错误:一个空格就好了 摘要:解题思路:注意事项:参考代码:#include#includeint main(){int n,a,b,c;for(int i=2;i<1000;i++){ int j=i; while(…… 题解列表 2023年02月08日 0 点赞 0 评论 167 浏览 评分:0.0