题解 1115: DNA

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

DNA-题解(C++代码)

摘要:解题思路:注意事项:参考代码:#define _CRT_SECURE_NO_WARNINGS#include <iostream>using namespace std;void print(int ……

DNA-题解(C语言代码)

摘要:1、普通写法 这个写法是我一行一行找规律写的 毫无算法可言 简单记录一下一直傻气的自己 ```cpp #include using namespace std; int main() ……

DNA (C++代码)

摘要:参考代码:#include <iostream> using namespace std; int main() {     int n,a,b,flag;     cin>>n;    ……

循环嵌套实现DNA(C++)

摘要:解题思路:注意事项:参考代码:#includeusing namespace std;int main(){         int N, a, b, n = 1;         cin >> N;……

DNA-题解(拆分法)

摘要:解题思路:参考样例输出,我们可将“DNA”拆分为两大部分分别打印。即:先打印第一行,再用b循环打印其余内容。注意事项:数据n,a,b的取值范围第一行与每次b循环中最后一行的空格数与数据a之间的关系中间……

DNA (C语言代码)

摘要:解题思路:      考虑行数、列数与重复度的关系注意事项:      重复度等于1时的情况特殊处理参考代码:#include <stdio.h>int main(){    int n;    sc……

DNA (C语言代码)

摘要:解题思路:先把第一组输出,其余重复的,少输出一行,孩子以为x是*,结果死活不过,后来把*换成x还不对,最后发现热家的X是大写的注意事项:参考代码:#include <stdio.h>#include ……

DNA (C语言代码)

摘要:解题思路:简单粗暴 直接先做一个X 再用复制行数的方法给出带重复次数的图案 最后加一个输出次数就好注意事项:参考代码:#include <stdio.h>#include <string.h>#inc……

DNA (C语言代码)简洁的代码

摘要:解题思路:不懂的话,私信我吧注意事项:参考代码:#include<stdio.h>int main(){    int N;    int a, b;    scanf("%d", &N);    f……

注意‘&#039;x"要大写

摘要:解题思路:注意事项:参考代码:#include<stdio.h>void main(){ int h,l,i,z,y; int d;const int n;const int j;int *p=&j;……