题解列表

筛选

直接写就得了

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    int a;    float b=0;    scanf("%d",&a);    if(a<=1000……

最普通的解题方法

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){    int i,a;    double b=30.0;    scanf("……

安之 用STL模拟栈的方法

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ //3 123    321 //3 123 312 ve……

最复杂的解题方法

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    int i,j,a,k,b=0,c=0,d=0,e=0,f=0;    scanf("%d",&a);  ……

后缀表达式的值!?

摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h" using namespace std; // 定义一个栈,用于存储操作数 stack<long long> st;……