题解列表

筛选

最简单写法c++

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

字符串比较!

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

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

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

水仙花数判断C代码记录

摘要:解题思路:注意事项:参考代码:本人代码#include<stdio.h> int main() {     int h,d,u;     for(h=1;h<10;h++)         ……

[编程入门]密码破译

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    char c1,c2,c3,c4,c5;    scanf("%c%c%c%c%c",&c1,&c2,&c……