DNA (40多行C++) 摘要:#include<iostream>using namespace std;int main(){ int n; cin>>n; for(int i=0;i<n;i++) { int a,b; c…… 题解列表 2018年12月26日 0 点赞 0 评论 335 浏览 评分:0.0
1115: DNA(python代码) 摘要:解题思路:注意事项:参考代码:n = int(input()) for i in range(n): a,b=map(int,input().split()) for j in …… 题解列表 2022年01月31日 0 点赞 0 评论 127 浏览 评分:0.0
DNA (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int length,repead; int n;cin>>n; fo…… 题解列表 2018年11月03日 0 点赞 0 评论 390 浏览 评分:0.0
DNA C语言 mirage解题记录 摘要:解题思路:1.先弄一个二维基本结构,定义二维数组初始化全部空格,再把对应位置改为 X 。3.循环b次输出即可。注意事项:基本结构为一个 a列 * (a-1)行 的矩阵,循环完成最后一行单独输出。参考…… 题解列表 2018年08月03日 26 点赞 2 评论 327 浏览 评分:0.0
DNA-题解(太皮了,竟然玩DNA)容易理解的解析 摘要: #include #define N 100 int main(){ int n,m,k,t; int i,j,A[N]={0},B[N]={0};…… 题解列表 2019年07月25日 0 点赞 0 评论 364 浏览 评分:0.0
DNA-题解(Java代码) 摘要: Scanner scanner=new Scanner(System.in); int num=scanner.nextInt(); int[][]arr=new int[num][2…… 题解列表 2021年02月06日 0 点赞 0 评论 168 浏览 评分:0.0
1115: DNA 循环 摘要:解题思路:打印对角线X 第一行单独处理注意事项:参考代码:#include<iostream> #include<cmath> using namespace std; int main() …… 题解列表 2024年08月10日 0 点赞 0 评论 126 浏览 评分:0.0
DNA (C语言代码)(软比特的贝尔在线解题) 摘要:解题思路: 不难发现,看似复杂的DNA实际上是由第一个图形平移b-1次而成(b为重复度),再细化一下,整个DNA是由第一个图形中的所有‘x’(除了第一个图形左上和右上的‘x’,读者自行理解…… 题解列表 2019年02月27日 0 点赞 0 评论 413 浏览 评分:0.0
DNA-题解(C语言代码) 摘要:DNA-题解(C语言描述) [原题链接:DNA-题解](https://blog.dotcpp.com/article/aedit1115 "原题链接:DNA-题解") #includ…… 题解列表 2019年10月16日 0 点赞 0 评论 267 浏览 评分:0.0
DNA----------------------------------- 摘要:解题思路:注意事项:参考代码:#include "stdio.h"#include "math.h"char S[100];void X(int a, int x,int y) { for (int…… 题解列表 2021年08月02日 0 点赞 0 评论 172 浏览 评分:0.0