题解列表

筛选

2779: 输出绝对值

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

2779: 输出绝对值

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

for and if买房子

摘要:解题思路:注意事项:参考代码:#include <iostream>#include <cmath>using namespace std;int main(){    double y=200;  ……

字符串连接

摘要:解题思路:注意事项:参考代码#include<stdio.h>#include<string.h>int main() {    char arr1[100];    gets(arr1);    i……

..................

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

绝对值排序(python)

摘要:解题思路:注意事项:参考代码:while True:    nums = list(map(int, input().split()))    n = nums[0]    if n == 0:   ……

数列排序(python)

摘要:解题思路:注意事项:参考代码:n=int(input())for _ in range(n):    nums=list(map(int,input().split()))    left=[]   ……