题解 1115: DNA

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

筛选

DNA (C语言代码)

摘要:解题思路:循环的利用注意事项:参考代码:#include<stdio.h>#include<string.h> int main(){  int num;  int a,b;  int temp1,t……

DNA (C语言代码)

摘要:解题思路:就是用了一下数学上对线求一下表达式就行了,一个是y=x,一个是y+x-a+1=0注意事项:注意!注意!注意!大写的X!我在这上边坑了好久.......参考代码:#include<stdio.……

1115: DNA思路与代码 java

摘要:- 思路 观察一个单元e,g, a=3: X0X 0X0 X0X 发现当行列相等, 或者行列相加等于a+1时为X,……

DNA-题解(Java代码)

摘要: Scanner scanner=new Scanner(System.in); int num=scanner.nextInt(); int[][]arr=new int[num][2……

DNA——Java二维坐标系求解

摘要:解题思路:构建二维坐标系x,y,当x==y和x==a-y-1时输出“X” ,其余时候输出空格,知道一个怎么输出,多个就比较容易了注意事项:    参考代码:import java.util.Scann……

DNA (C++代码)怎么想怎么画

摘要:解题思路:怎么想怎么画再打印注意事项:参考代码:#include<iostream>#include<cstring>using namespace std;const int maxn = 1000……

DNA (C语言代码)

摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;/* run this program using the console pauser o……