编写题解 1810: [编程基础]输入输出练习之精度控制3 摘要:解题思路:注意事项:参考代码:a,b,c,d=map(str,input().split())print(f'{a} {int(b):>4} {float(c):.2f} {float(d):…… 题解列表 2024年02月26日 0 点赞 0 评论 176 浏览 评分:0.0
7777777777777777777777777777 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ long long n,ans=0; cin>…… 题解列表 2024年02月26日 0 点赞 0 评论 271 浏览 评分:0.0
不高兴的津津C解 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a[7],b[7],i,c[7],count=0,max,k; for(i=0;i<7;i…… 题解列表 2024年02月26日 0 点赞 0 评论 257 浏览 评分:0.0
整数去重C小白解 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,j,is; scanf("%d",&n); int a[n+1],i; fo…… 题解列表 2024年02月26日 0 点赞 0 评论 263 浏览 评分:0.0
谁考了第k名C解 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,k,j,m; scanf("%d %d",&n,&k); int a[n+1],i…… 题解列表 2024年02月26日 1 点赞 0 评论 255 浏览 评分:0.0
Java有规律的数列求和 摘要:解题思路:假设第一项的分子为a,分母为b,则第一项为a/b,第二项为(a+b)/a,第三项为((a+b)+a)/(a+b)......总结一下:后一项的分子为前一项分子分母的和,后一项的分母为前一项的…… 题解列表 2024年02月26日 0 点赞 0 评论 120 浏览 评分:0.0
f-string编写题解 2750: 字符菱形 摘要:解题思路:注意事项:参考代码:a=input()for i in range(3): print(' '*(2-i), end='') print(f…… 题解列表 2024年02月26日 1 点赞 0 评论 281 浏览 评分:0.0
奇数单增序列C解 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int N,p,t; scanf("%d",&N); int a[N+1],b[N+1],i,…… 题解列表 2024年02月26日 0 点赞 0 评论 195 浏览 评分:0.0
编写题解 2772: 苹果和虫子-while循环 摘要:解题思路:注意事项:参考代码:n,x,y=map(int,input().split())while y<(n*x): if y%x==0: print(n-(y//x)) …… 题解列表 2024年02月26日 0 点赞 0 评论 264 浏览 评分:0.0
1016: [编程入门]水仙花数判断 摘要:for i in range(100, 1000): temp = i num1 = temp % 10 temp //= 10 num2 = temp % 10 tem…… 题解列表 2024年02月26日 0 点赞 0 评论 157 浏览 评分:0.0