题解列表

筛选

感觉不错的方法

摘要:解题思路:注意事项:参考代码:#include <iostream> // 包含输入输出流库using namespace std; // 使用标准命名空间int main() { // 主函数入口 ……

两层for循环+ArrayList链表

摘要:解题思路:注意事项:参考代码:import java.util.*; public class Main {     public static void main(String[] args) ……

猜价模拟(c语言)

摘要:参考代码: ```c #include int fun(int n,char *s) { int a=(1+n)/2; int min=0,max=n; for(……

题解 2818: 分离整数的各个数位 c++

摘要:解题思路:自己想注意事项:别抄我的,抄我的人我诅咒他电脑10秒关机参考代码:#include<bits/stdc++.h>#include<windows.h>using namespace std;……

编写题解 2819: 数字反转

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){    long long n,ans=0;    cin>……