题解列表

筛选

《最小公倍数》题解

摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>int main(){    int gcd(int a,int b);    void swa……

《整除的尾数》题解C

摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>int main(){    int a,b;    while(scanf("%d%d",&a……

《素数回文》题解C

摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>#include<math.h>int main(){    int a,b;    scanf……

编写题解 1134: C语言训练-求PI*

摘要:解题思路:利用循环,当某一项小于10的-6次方是停止注意事项:唯一注意一点就是,小于10的-4次方的那一项不用算进来,不然得出来的是3.151495参考代码:import java.util.Scan……

采用数组反序计算大数

摘要:解题思路:注意事项:参考代码:#include <iostream>#include <string>#include <vector>using namespace std;vector<int> ……