2806: 人口增长问题 摘要:解题思路:注意事项:参考代码:x,n = map(int,input().split())for i in range(0,n): x += x * 0.001 print('{:…… 题解列表 2023年02月07日 0 点赞 0 评论 479 浏览 评分:0.0
2807:****(标题有敏感词) 摘要:解题思路:注意事项:参考代码:r,m,y = map(int,input().split())r = r * 0.01for i in range(0,y): m += m * rprint(i…… 题解列表 2023年02月07日 0 点赞 1 评论 537 浏览 评分:4.0
python身份证排序解法 摘要:n=int(input().strip())X=[input().strip() for _ in range(n)] #用split函数的话 会放在列表里面,这样排不了序 strip函数拆分字符串返…… 题解列表 2023年02月07日 0 点赞 0 评论 437 浏览 评分:0.0
两个for 循环搞定 摘要:解题思路:用string.h函数,变量len 来进行字符串长度的统计,确定for 语句中的范围利用变量i和变量进行循环嵌套,外循环来进行判断每个数是否在数组中有与之相同 的数如有相同数则用sum来进行…… 题解列表 2023年02月07日 0 点赞 1 评论 901 浏览 评分:8.7
问就是只会枚举 摘要:#include #define endl '\n' using namespace std; typedef long long i64; typedef int i32; typedef…… 题解列表 2023年02月07日 0 点赞 0 评论 469 浏览 评分: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 评论 324 浏览 评分: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 评论 353 浏览 评分:0.0
题解 1014: [编程入门]阶乘求和 摘要:解题思路:注意事项:参考代码import math #导入模块def main(n): #定义函数 return math.factorial(n)n = int(input())sn = …… 题解列表 2023年02月07日 0 点赞 0 评论 321 浏览 评分:0.0
结构体简化排序 摘要:解题思路:用结构体方式储存字符串以及字符串的长度 可以更方便地进行排序注意事项:参考代码:typedef struct str{ char str[101]; int len;}st;int main…… 题解列表 2023年02月07日 0 点赞 0 评论 471 浏览 评分: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 评论 535 浏览 评分:0.0