题解列表

筛选

思路简单清晰的解法

摘要:解题思路:看过python列表操作的小伙伴应该都能看得懂注意事项:参考代码:while True:    l1 = list(map(int, input().split()))    l1.pop(……

和楼上老哥思路一样不过做法不同

摘要:解题思路:就是把一个列表分成两个新列表出来比较计算结果注意事项:参考代码:while True:    l1 = list(map(int, input().split()))    l2 = l1[……

c++的答案liiuleshi

摘要:解题思路:公式注意事项:参考代码:#include<bits/stdc++.h> using namespace std;int main(){ double n; cin>>n; printf("c……

c语言求解圆面积(详细注释)

摘要:#include <stdio.h>int main(){    //设置圆半径为r,s    double r,s;    //输入圆半径r,注意在scanf中double要用%lf表示    sc……

数组解答100以内长度密码破译(新手版)

摘要:解题思路:一,设置数组变量a[],长度给100                     设置整数变量i,用作计数和数组下标                     设置字符变量t,用作接受输入和传递给……

tom数c++题解

摘要:解题思路:注意事项:参考代码:#include using namespace std; int main(){ long long n,sum=0,s,temp; while(cin>>n)……

亲和数c++题解

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