题解列表

筛选

就很简单的原理

摘要:解题思路:注意事项:参考代# main n = input() n_da = 0 n_xiao = 0 n_number = 0 for i in n:     if(i.isdigit(……

编写题解 1171: 蟠桃记

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

编写题解 1182: 人民币问题

摘要:解题思路:注意事项:参考代码:#include<iostream>#include<math.h>#include <iomanip>#define PI 3.1415using namespace ……

编写题解 2015: 自动晾衣机

摘要:解题思路:注意事项:参考代码:l=int(input()) while True:     try:         ls=list(map(int,input().split()))    ……

看来我把题想的难了

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int sum,t;int main(){     char c;     while(c =……

编写题解 1183: 人见人爱A+B

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

编写题解 1184: 众数问题

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