题解列表

筛选

简单易懂 思路简单

摘要:解题思路:注意事项:参考代码:while True: try: lt=input().split() lt.pop(0) ls=['fork','chopsticks&#……

[编程入门]数字逆序输出

摘要:解题思路:注意事项:参考代码:#include <stdio.h> int main() { int a[10]={0},i=0; for(i=0;i<10;i++) scanf("……

二级C语言-寻找矩阵最值

摘要:解题思路:注意事项:参考代码:#include <stdio.h> int main() {         //因为n>=1&&n<=6,所以把数组定义为a[6][6] int n=0,a……

编写题解 3000: 交换值

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

编写题解 1267: A+B Problem

摘要:解题思路:注意事项:参考代码:#includeusing namespace std;int main(){    int a,b;    cin>>a>>b;    cout<<a+b;    re……

  编写题解 2776: A*B问题

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

编写题解 2751: 超级玛丽游戏

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

编写题解 2758: 打印ASCII码

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