编写题解 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 评论 286 浏览 评分: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 评论 174 浏览 评分:0.0
编写题解 2774: 计算三角形面积 摘要:解题思路:注意事项:参考代码:import mathx1,y1,x2,y2,x3,y3=map(float,input().split())a=math.sqrt(math.pow(x1-x2,2)+…… 题解列表 2024年02月26日 0 点赞 0 评论 244 浏览 评分:0.0
设立boolean标志,使其判断大小写、数字、特殊字符等都只判断一次 摘要:解题思路:注意事项:参考代码:import java.util.*; public class Main { public static void main(String[] args) …… 题解列表 2024年02月26日 0 点赞 0 评论 152 浏览 评分:0.0
DR 0001 字符统计 摘要:解题思路: 暂无注意事项: 单个字符用‘’,字符串是索引序列,要通过charAt()去调用单个字符参考代码:import java.util.Scanner;public class Main { …… 题解列表 2024年02月26日 0 点赞 0 评论 239 浏览 评分:0.0
甲流病人初筛C解 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,count=0,i; scanf("%d",&n); char s[200][20…… 题解列表 2024年02月27日 0 点赞 0 评论 273 浏览 评分:0.0
暴力求解最大公约数,但算式求解最小公倍数 摘要:解题思路:注意事项:最小公倍数使用了最大公约数来计算参考代码:import java.util.Scanner; public class Main { public static void…… 题解列表 2024年02月27日 0 点赞 0 评论 301 浏览 评分:0.0
2776: A*B问题 摘要:解题思路: 简单的求A*B的输出 就是加了一个范围 1 <= A,B <= 50000。注意事项:参考代码:#include<stdio.h>int main(){ int A,B; scanf…… 题解列表 2024年02月27日 0 点赞 0 评论 351 浏览 评分:0.0
编写题解 1014: [编程入门]阶乘求和 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ long long a,ans=0; cin>…… 题解列表 2024年02月27日 0 点赞 0 评论 218 浏览 评分:0.0
2775: 等差数列末项计算 摘要:解题思路: 首先我们要知道等差数列通项公式 an = a1+(n-1)d a1 a2 n 是我们输入的是已知的 公差d用第二项减…… 题解列表 2024年02月27日 0 点赞 0 评论 280 浏览 评分:0.0