编写题解 1093: 字符逆序(不多解释,一看就明白) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ …… 题解列表 2024年12月18日 1 点赞 0 评论 118 浏览 评分:10.0
约瑟夫环模拟法 摘要:解题思路:利用约瑟夫环解决问题注意事项:要求剩余人数剩余1时,才输出参考代码:#include<stdio.h>int main(){ int n,i,k,c; scanf("%…… 题解列表 2024年12月18日 1 点赞 0 评论 205 浏览 评分:10.0
编写一函数,由实参传来一个字符串,统计此字符串中字母、数字、空格和其它字符的个数,在主函数中输入字符串以及输出上述结果。 只要结果,别输出什么提示信息。 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>void x(char a[], int b[]) { int i, t =…… 题解列表 2024年12月18日 0 点赞 0 评论 154 浏览 评分:0.0
简单易想到 摘要:解题思路:注意事项:参考代码:#include<stdio.h>void fun(int a[],int m,int n){ int b[n],i,j=0; for(i=n-m;i<…… 题解列表 2024年12月18日 1 点赞 0 评论 152 浏览 评分:0.0
直接输入然后输出 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[10];  …… 题解列表 2024年12月18日 0 点赞 0 评论 224 浏览 评分:0.0
数组插入处理,从最后一个往前取值 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[10]; int b,i,k;&nb…… 题解列表 2024年12月18日 1 点赞 0 评论 192 浏览 评分:0.0
while循环的简单使用 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int x(int n) { int sum = 0; if (n &…… 题解列表 2024年12月17日 0 点赞 0 评论 100 浏览 评分:0.0
2852配对碱基链 摘要:解题思路:注意事项:#n=include<string>是引用strlen函数的头文件参考代码:#include<stdio.h>#include<string.h>…… 题解列表 2024年12月17日 3 点赞 0 评论 53 浏览 评分:10.0
3060: 合并石子 区间DP 摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h" using namespace std; // 定义全局变量n和数组…… 题解列表 2024年12月17日 0 点赞 0 评论 55 浏览 评分:0.0