1141: C语言训练-百钱百鸡问题 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int i,j,k; for(i=0;i<=100;i++…… 题解列表 2024年01月18日 0 点赞 0 评论 221 浏览 评分:9.9
题解 2831: 画矩形(简) 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ long long n,m,x; char c…… 题解列表 2024年01月18日 0 点赞 0 评论 224 浏览 评分:9.9
2831: 画矩形 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ long long n,m,x; char c…… 题解列表 2024年01月18日 0 点赞 0 评论 196 浏览 评分:9.9
题解 1267: A+B Problem 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args) {…… 题解列表 2024年01月18日 0 点赞 0 评论 609 浏览 评分:9.9
平方差C++最快算法 摘要:解题思路:找规律,总数-能被2整除且不能被4整除的数=平方差数注意事项:参考代码:#include<iostream> using namespace std; int main() …… 题解列表 2024年01月18日 0 点赞 0 评论 597 浏览 评分:9.9
用更相减损术求解最大公约数与最小公倍数 摘要:解题思路:用辗转相除法求最大公约数已经写过了 利用递归与数学方法求解最大公约数与最小公倍数问题-Dotcpp编程社区这次使用更相减损术求解最大公约数求解此题,求解此题需要明白两点:1、更相减损术:拿…… 题解列表 2024年01月18日 0 点赞 0 评论 349 浏览 评分:9.9
题解 1014: [编程入门]阶乘求和 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ long long n,sum=0; cin>…… 题解列表 2024年01月19日 0 点赞 0 评论 284 浏览 评分:9.9
1014: [编程入门]阶乘求和 摘要:解题思路:die!注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ long long n,sum=0; …… 题解列表 2024年01月19日 0 点赞 0 评论 204 浏览 评分:9.9
题解 2825: 计算多项式的值 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ double x,n,sum=1,a; cin>…… 题解列表 2024年01月19日 0 点赞 0 评论 277 浏览 评分:9.9
题解 2830: 数字统计 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ long long l,r,sum=0; cin…… 题解列表 2024年01月19日 0 点赞 0 评论 240 浏览 评分:9.9