题解列表

筛选

有规律数列求c++

摘要:解题思路:直接暴力注意事项:参考代码:#include<iostream>#include<string.h>#include<stdlib.h>#include<math.h>#include<al……

题解 1173: 计算球体积

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){  double x,V;  while(~scanf("%lf",&x))   ……

1043: [编程入门]三个数字的排序

摘要:解题思路: 穷举, 把所有情况都列出进行一波暴击试验从而得出答案参考代码:#include <stdio.h> int main() {   int a, b, c;   scanf("%d%……

编写题解 1115: DNA(python)

摘要:解题思路:注意事项:参考代码:N = int(input())for i in range(N):    m,n = map(int,input().split())    a = (m+1) // ……

简单解题法2

摘要:解题思路:注意事项:参考代码:#include<stdio.h> struct xinxi {                           /*定义结构体*/    char xuehao[1……

1009,好懂的方法

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){    int a,b,c,d,e,f,g;    scanf("%d",&a);……

1014,好懂的方法

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    int i,n;long long s=0,b=1;    scanf("%d",&n);    for(……