题解列表

筛选

2849: 石头剪子布

摘要:``` #include using namespace std; const int N=110; int main(){ int T; cin>>T; while(T--){ ……

最长最短单词

摘要:解题思路:注意事项:参考代码:myList=input().split()mydict= {}newList=[]for temp in myList:    newList.append(len(t……

java真的很简单

摘要:import java.util.Scanner; import java.util.Arrays; public class Main { public static void main……

1231: 杨辉三角

摘要:``` #include using namespace std; const int N=110; int a[N][N]; int main(){ int n; while(cin……

2784: 收集瓶盖赢大奖

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

买笔买笔30083008

摘要:解题思路:#include <iostream>using namespace std;int main(int argc, char** argv){int x,y,a,b,c;cin>>x;c=x……

循环入门练习1 1764

摘要:解题思路:#include <iostream>using namespace std;int main(){    int sum =0;    for(int i=1;  i<=1000;i++)……