题解列表

筛选

有没有·大佬看看

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>voidtiqu(char[]);intmain()……

2848:基因相关性

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ float std; scanf("%f",&std); char ar……

题解2808买房子

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int a,b;&n……

2849:石头剪刀布

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n; scanf("%d",&n); char player1[……

[编程入门]自定义函数之数字分离

摘要:解题思路:注意事项:重点:怎么把整数转化为字符参考代码:#include <stdio.h>//写一函数,输入一个四位数字,要求输出这四个数字字符,但每两个数字间空格。如输入1990,应输……

偶数列举两种方法

摘要:方法1#include <iostream>using namespace std;int main() { int n; cin >> n; for (int i = 2; ……