题解列表

筛选

C++实现贷款计算

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

1169: 绝对值排序

摘要:解题思路:利用冒泡法进行排序注意事项:while循环时一定要记得设置输入的数不为0参考代码:#include <stdio.h>#include <stdlib.h> int main(){    i……

c++格子刷油漆

摘要:解题思路:https://www.freesion.com/article/4385447958/参考代码:#include<iostream> using namespace std; int ……

对矩阵二维数组还是不是很熟悉啊

摘要:解题思路:注意事项:折腾了这么久,不懈题解对不起自己看时间一道题也高了快一个小时了参考代码:##while True:##    n=int(input())##    lh=[]##    for ……

思维题-解谜游戏

摘要:分为四组,组内互换组间不能互换,因此每组每种颜色数量必为1/4 ```cpp // 外圈:1 2 3 | 4 5 6 | 7 8 9 | 10 11 12 // 中圈:1 2 | 3 4……