题解 1115: DNA

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

筛选

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

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

DNA (C++代码)

摘要:解题思路:首先用一个字符数组,之后全部填充为空格,可以看出输出是正对角与反对角,输出的时候判断一下就好了!注意事项:主要注意下一个重复渡的第一行是跟上一行重复的,用memset需要加头文件cstrin……

DNA (C语言代码)

摘要:#include "stdafx.h"int main(){     int i,j,k,l,n, a[15], b[15];     scanf("%d", &n);     for (i = 0;……

DNA (C语言代码)

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int length,repead; int n;cin>>n; fo……

DNA (C语言代码)

摘要:解题思路:注意事项:参考代码:#include <cstdio> #include <cstring> #include <string> #include <cmath> #include ……

DNA (C++代码)

摘要:解题思路:找规律,找到X与行列关系。注意事项:以后重复都是由第二行开始参考代码:#include <iostream>using namespace std;int main(){    int n;……

DNA (C语言代码)

摘要:注意事项: 表达得非常乱,代码也很乱,就不贴了;解题思路:  应用for循环;解决题目要求;for( z=0; z<b; z++)  // 重复数嵌套行数 {     int c; //判断当前……

DNA (C++代码)

摘要:解题思路:观察输出样式,用数组来存储,X的存储就是a*a矩阵的正负对角线,注意事项:输出时 的格式!!!!!参考代码:#include<iostream> #include<cstdio> usi……

DNA (C语言代码)

摘要:解题思路:注意事项:参考代码:package cn.LanQiao.day09;import java.util.Scanner;public class DNATest { /** * 输入输入包含……