题解列表

筛选

1075: 台球碰撞(python)

摘要:核心:边界碰撞之后如何计算——分开算,用两while循环代码:from math import * while True:     L, W, x, y, r, a, v, s = map(int……

暴力拆解 分解质因数 直接算出最小的质因数

摘要:解题思路:某数已知是两个质数的乘积,这里设为n大质数设为b;小指数设为a根号下n一定大于较小的质数a(可数学验证),以此解决计算时间超时的问题参考代码:int n;scanf("%d",&n);int……

2872: 字符环

摘要:解题思路:注意事项:参考代码:#include <stdlib.h> #include <stdio.h> #include <iostream> #include <string.h> us……

2875: 回文子串

摘要:解题思路:注意事项:参考代码:#include <stdlib.h> #include <stdio.h> #include <iostream> #include <string.h> us……

白细胞计数 学习新函数

摘要:解题思路:利用冒泡排序,直接从小到大排好数组顺序(或者利用algorithm库的sort函数排序)再利用cmath库求绝对值和较大的数省去重复利用if-else函数,使代码更简洁客观参考代码:int ……

菜鸟编程,高手勿看

摘要:解题思路:利用while 循环来进行元素逆置注意事项:参考代码:#include<iostream>using namespace std;int main(){ int arr[10]; for (……