题解列表

筛选

定义动态二维数组

摘要:解题思路:遍历找到最小值注意事项:参考代码:#include<stdio.h>#include<stdlib.h>int main(){    int n;int min,a,b;    while(……

1029题解简单易懂

摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <math.h>int fun(int m){ int y; y=(int)sqrt(m); for(int i=2……

1034 题解简单易懂

摘要:解题思路:注意事项:参考代码:#include <stdio.h>int seperate(int m,int x,int y,int z,int w){ x=m/1000%10; y=m/100%1……

题解c语言代码

摘要:解题思路:用字符的特性来解题,每个字符+4即得到想要的字母。注意事项:这样的代码理解起来非常简单,而且可以加深gets()与puts()的记忆。PS:之前见过大佬这样写的,但是后来找不到了,如果重复纯……

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

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

输出Tom数(C++)

摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;const int station = 10;int main(){            ……

c语言函数的链式调用-实例

摘要:解题思路:注意事项:参考代码:‘#include <stdio.h> #pragma warning(disable : 4996 int gcd(int x, int y) {     if……

成绩排序c语言

摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h> struct student{    char name[200];    int age; ……