题解列表

筛选

数组求解与指定数字相同的数的个数

摘要:解题思路:首先数组a存储数字,100就代表整数序列最大为100,两个变量n,m表示整数序列的长度(N <= 100)和指定的数字,               其次一个for循环读取数字,并存到数组a……

字符串比较!

摘要:#include<stdio.h>#include <string.h>int main(){  char c[100],q[100];   scanf("%s",c);    scanf("%s",……

最简单写法c++

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int h = 1189; int t = h; int w = 84……