题解列表

筛选

题解 2807:计算金额(for)

摘要:解题思路:注意事项:参考代码:a,b,c=map(int,input().strip().split())for i in range(c):    b *= (1+a/100)print(int(b……

2981: 二进制分类

摘要:```cpp #include using namespace std; int A,B; bool turn(int x) { int a=0,b=0; while(x!=0) ……

这个作弊也可以哟

摘要:解题思路:无注意事项:无参考代码:#include<iostream>using namespace std;int main(){    cout<<"Glmre";    return 0;}……

使用冒泡排序法

摘要:解题思路:使用冒泡排序法 注意事项:参考代码:#include<stdio.h>   //冒泡排序法函数//函数可以copy一下回头还可以用 void bubbleSort(int arr[],……