数据结构-字符串插入 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ int i; int t=0; int j=0; c…… 题解列表 2023年06月19日 0 点赞 0 评论 495 浏览 评分:0.0
非常简单,小学生解法 摘要:解题思路:用一个数组来计算每个字母(52个字母)重复的,先写一个子函数求出n的阶乘,也就是没有字母重复时的排列总数,再用此排列总数依次除以每个字母重复的次数,就能求出最终的排列总数了注意事项:代码里面…… 题解列表 2023年06月18日 0 点赞 0 评论 483 浏览 评分:6.0
C语言解法,参考C++ 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char num[5000]; int i,j,a=0; scanf("%s…… 题解列表 2023年06月18日 0 点赞 0 评论 927 浏览 评分:8.3
c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>int main(){ char str[301]; fgets(str, size…… 题解列表 2023年06月18日 0 点赞 0 评论 387 浏览 评分:0.0
c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n, i, j; scanf_s("%d", &n); for (i = 0; i < n; i++) …… 题解列表 2023年06月18日 0 点赞 0 评论 535 浏览 评分:0.0
[编程入门]数字的处理与判断 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;#include<cmath>int main(){ int num = 0; int tem…… 题解列表 2023年06月18日 0 点赞 0 评论 291 浏览 评分:0.0
动态规划-货币系统 摘要: #include #include using namespace std; const int N =310; int f[N]; int …… 题解列表 2023年06月18日 0 点赞 0 评论 420 浏览 评分:9.9
引用上面博主的,感觉进步了 摘要: #include #include #include using namespace std; const int N =200; int f…… 题解列表 2023年06月18日 0 点赞 0 评论 488 浏览 评分:9.9
a+b的最简方法 摘要:/这题是一道非常经典的题目,是编程初学者的必会题。(大佬请屏蔽)//首先头文件、名字空间我就不说了,这是得会背的内容,如下:#include<bits/stdc++.h>//这是一个万能头文件,可以背…… 题解列表 2023年06月18日 1 点赞 1 评论 579 浏览 评分:9.9
c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>struct student{ float score[7]; char name[50];};int main(){ struct s…… 题解列表 2023年06月18日 0 点赞 0 评论 380 浏览 评分:0.0