1115: DNA(c++代码) 摘要:```cpp #include using namespace std; void PaintDNA(int a,int b) { for(int i=1;i…… 题解列表 2022年09月11日 0 点赞 0 评论 134 浏览 评分:9.9
单独打印第一行后,循环打印后面的行数(c语言) 摘要:解题思路:假设用left-x表示左边需要打印x的位置,right-x表示右边需要打印x的位置则每行打印“x”的规律:随着打印行数的增加,left-x向右移动(即left--),right-x向左移动(…… 题解列表 2022年09月18日 0 点赞 0 评论 158 浏览 评分:9.9
1115DNA题解 二维数组 摘要:```c #include int main() { int n, a, b, i, j, k, r, t = 1, num = 1, s; char c[39][39];//使用二维…… 题解列表 2022年10月06日 0 点赞 0 评论 224 浏览 评分:9.9
DNA(非数组写法) 摘要: #include #include #include #include using namespace std; int main() …… 题解列表 2022年10月12日 0 点赞 0 评论 119 浏览 评分:0.0
敲简单C语言代码!!! 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c,i,j,k,h,r,f,t; scanf ("%d",&a); for (…… 题解列表 2022年11月02日 0 点赞 0 评论 121 浏览 评分:0.0
最朴素的方法就是printf 摘要:解题思路:说实话成功的时候我笑了注意事项:只需要注意空格参考代码:#include<stdio.h> main() { int n; int a,b; scanf("%d",&n); …… 题解列表 2022年11月14日 0 点赞 0 评论 87 浏览 评分:9.9
1115基础解法(Python) 摘要:解题思路:找规律即可注意事项:print()只换一行但是print('\n')会换二行,注意这点否则会格式错误参考代码:n = int(input())for count in ran…… 题解列表 2022年11月15日 0 点赞 0 评论 143 浏览 评分:9.9
超详细通俗易懂C++,暴力求解 摘要:参考代码:#include<iostream> using namespace std; int main() { // 输入 int N; cin>>N; …… 题解列表 2022年11月23日 0 点赞 1 评论 131 浏览 评分:9.9
DNA (java) --思路清晰 摘要:解题思路:定义一个二维数组用于存放'X',' ',例如:打印一个5行的DNAX000X0X0X000X000X0X0X000X3行的DNA为:x0x0x0x0x 这里…… 题解列表 2022年11月25日 0 点赞 0 评论 151 浏览 评分:9.9
题解 : DNA【Python】 摘要:解题思路:对于一个单位的dna串,我们可以先打印其a-1行,重复b-1次,然后打印最后一行:参考代码:def dna(a): # 先创建 (a-1)*a 的二维列表,元素都为 空格'…… 题解列表 2022年12月06日 0 点赞 0 评论 141 浏览 评分:9.9