题解列表

筛选

Cylinder (C语言代码)

摘要:参考代码:#include<iostream>#include<stdio.h>#define PI 3.1415926535898using namespace std;int main(){ do……

核桃的数量 (C语言代码)

摘要:解题思路:就是找3个数的公倍数注意事项:参考代码:#include<stdio.h>void main(){int a,b,c,i;scanf("%d%d%d",&a,&b,&c);for(i=1;;……

DNA (C++代码)(直接上代码)

摘要:注意:(每组输出有一个空行)cout << endl;cout << endl;参考代码:#include<iostream>using namespace std;void show(int a,i……

矩阵乘法 (C语言代码)

摘要:解题思路:注意事项:本题主要考察线性代数的知识。注意一些特殊情况。参考代码:#include<stdio.h>int juzheng[3][30][30];int n;int js(int i,int……

汪汪与打针 (C语言代码)

摘要:解题思路:注意事项:参考代码:#define M 120    //妙三多的价格 #define Y 100    //疫苗的价格 #include <stdio.h> int main(v……