学英语的题,看懂题目就赢 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { int n; while(~scanf("%d",&n)&&n!=0) { in…… 题解列表 2023年10月04日 0 点赞 0 评论 298 浏览 评分:0.0
2854: 密码翻译 摘要: import java.util.Scanner; public class Main { public static void main(String[] args) { …… 题解列表 2023年10月04日 0 点赞 0 评论 290 浏览 评分:0.0
过河卒 python 摘要:n,m,cx,cy=list(map(int,input().split()))dp=[[0 for x in range(m+1)]for y in range(n+1)]b=[[0 for x i…… 题解列表 2023年10月04日 0 点赞 0 评论 601 浏览 评分:9.9
我这个巨简单 摘要:# 读取输入 L, M = map(int, input().split()) road = [0] * (L + 1) # 创建一个长度为 L+1 的数组,用于表示马路上的树 # 处理区…… 题解列表 2023年10月04日 0 点赞 0 评论 483 浏览 评分:9.9
题解 2853: 字符替换 摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class Main { public static void main(String[…… 题解列表 2023年10月04日 0 点赞 0 评论 354 浏览 评分:0.0
c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>#define maxsize 1001typedef struct treenode{ int d…… 题解列表 2023年10月03日 0 点赞 0 评论 367 浏览 评分:0.0
C语言---堆排序 摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <stdlib.h> #include <assert.h> typedef int HPDatatyp…… 题解列表 2023年10月03日 0 点赞 0 评论 426 浏览 评分:0.0
刻录光盘(c++) 摘要:## 解题思路 求强联通分量,统计入度为0的即可 ## 参考代码 ```cpp #include using namespace std; const int N = 1e4 + 5; …… 题解列表 2023年10月03日 0 点赞 0 评论 506 浏览 评分:9.9
计算多项式的值(注意了你最后统计结果值的时候要用double类型,用float类型不行,估计是小了,还有pow()函数不能用,估计是精度问题,这种我一直都觉得有点迷迷糊糊的) 摘要:参考代码: ```c #include #include int main() { float x; int n; scanf("%f%d",&x,&n); double s…… 题解列表 2023年10月03日 0 点赞 0 评论 398 浏览 评分:9.9
c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>#include <string.h>typedef struct treenode{ c…… 题解列表 2023年10月03日 0 点赞 1 评论 591 浏览 评分:9.9