题解列表

筛选

字符替换C语言

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char beitihuan,tihuanzhe; char a[31]; ……

1127基础解法(Python)

摘要:解题思路:可以用数学原理,也可以当做找规律注意事项:参考代码:n = int(input())cubic = pow(n, 3)square = pow(n, 2)if square % 2 == 0……

再多看一眼就会爆炸

摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ char a; scanf("%c",&a);     if(a%2>0){        printf(……

ikun崩溃代码

摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ double t; scanf("%lf",&t); if (t<=20){ printf("%.2lf",……

dp区间问题~~~~

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int n,a[1001],dp[1001][1001],sum[1001];int main……