题解列表

筛选

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++暴力简单)

摘要:解题思路:不就是暴力判断嘛!还不会!注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;int n;int main(){ scanf("%d……

c++格子刷油漆

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

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

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