题解列表

筛选

题解 1953: 三位数分解

摘要:解题思路:注意事项:参考代码:#include<cstdio>using namespace std;int main(){int a;scanf(“%d”,&a);printf(“%d%c%d%c%……

题解 2764: 带余除法

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){   int a,b;   cin>>a>>b;   cout<<a/b……

2925: 单词排序

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

简单的数学思想

摘要:解题思路:这是一道简单的数学编程题,根据题意,我们可以知道,第n次的高度=初始高度/2的n次方;经过的路径=n-1次小球运动的路径,又因为每一次小球运动的路径=前一次运动路径的一半(n>=1),所以设……