自由落体问题(简单C++) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<iomanip> using namespace std; int main() { int n…… 题解列表 2022年10月28日 0 点赞 0 评论 490 浏览 评分:9.9
蓝桥杯2013年第四届真题-核桃的数量(简单算法java) 摘要:解题思路:题意为三个数求最小公倍数,选取三个数中最大的一个数,让最大的数不断乘(从1~n),判断最大的数乘完以后能不能够整除最初输入的三个数,如果可以就说明这个数是三个数的最小公倍数注意事项:先要找到…… 题解列表 2022年10月28日 0 点赞 0 评论 374 浏览 评分:9.9
编写题解 1012: [编程入门]字符串分类统计 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ int letter=0,number=0,space=0,other=0;…… 题解列表 2022年10月28日 0 点赞 0 评论 337 浏览 评分:9.9
2924: 明明的随机数 摘要:解题思路:注意事项:参考代码://桶排序 #include <stdio.h> int main() { int n = 0, a = 0, sum = 0, t[1005] = {0…… 题解列表 2022年10月28日 0 点赞 0 评论 511 浏览 评分:9.9
JAVA完数的判断 摘要:解题思路:注意事项:参考代码:import java.text.DecimalFormat;import java.util.Scanner;public class Main { public…… 题解列表 2022年10月28日 0 点赞 0 评论 573 浏览 评分:9.9
舍罕王的失算(简单C++) 摘要:解题思路:注意事项:数值很大,但是在usigned long long int范围里面,因此可以用其存储参考代码:#include<iostream> using namespace std; i…… 题解列表 2022年10月28日 0 点赞 0 评论 502 浏览 评分:9.9
算1~N之间所有奇数之和(简单C++) 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { int n,i,s=0; cin>>n…… 题解列表 2022年10月28日 0 点赞 0 评论 412 浏览 评分:9.9
计算t=1+1/2+1/3+...+1/n(C++超级简单) 摘要:解题思路:注意事项:用float会出现精度问题,double更精确参考代码:#include<iostream> using namespace std; #include<iomanip> i…… 题解列表 2022年10月28日 0 点赞 0 评论 359 浏览 评分:9.9
t=1-1/(2*2)-1/(3*3)-...-1/(m*m)(C++简单代码) 摘要:解题思路:注意事项:用double更加精确参考代码:#include<iostream> using namespace std; #include<iomanip> int main() {…… 题解列表 2022年10月28日 0 点赞 0 评论 666 浏览 评分:9.9
2923: 病人排队 摘要:解题思路:注意事项:参考代码://插入排序与字符串交换 #include <stdio.h> #include <string.h> int main() { int n = 0, …… 题解列表 2022年10月28日 0 点赞 2 评论 386 浏览 评分:9.9