题解列表
编写题解 1954: 话费计算
摘要:解题思路:注意事项:参考代码:#include<stdio.h>
int main()
{
int a;
double sum = 0;
scanf("%d",&a)……
与指定数字相同的数的个数
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,m,i,b=0; int a[100]; scanf("%d%d",&……
2750: 字符菱形
摘要:解题思路: 直接输出注意事项:参考代码: #include<iostream>using namespace std;int main(){ char c; ……
1043: [编程入门]三个数字的排序
摘要:解题思路:哔哔哔注意事项:bibibi参考代码:#include<iostream>using namespace std;int main(){ int a,b,c,x1,x2,x3,x4; ……
2772: 苹果和虫子(Python)
摘要:解题思路:注意事项:参考代码:from decimal import *
Pi=3.14159
tmp = input()
n,x,y = tmp.split()
n = int(n)
x ……
2843: 计算2的N次方 高精度+快速幂
摘要:解题思路: 高精度模拟大数乘法,快速幂算法减小复杂度注意事项: 建议使用结构体,主函数更清晰参考代码:#include <iostream>
// #include <sstream>
// #i……