题解列表

筛选

水仙花数判断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……

第十三次作业2题

摘要:解题思路:利用桶排序思想计数注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int tong[100000];int main(){    ……

2846: 统计数字字符个数

摘要:解题思路:注意事项:要输入字符0到字符9参考代码:#include <bits/stdc++.h>using namespace std;char s[100000];int main(){    i……

2853: 字符替换

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