题解列表

筛选

编写题解 2819: 数字反转

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

翻转-简单易看懂

摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std;  typedef long long ll; int main() { int……

感觉不错的方法

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

编写题解 3016: 第几项

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