1479:删除数组中的0元素 摘要:解题思路:注意事项:参考代码:#include <stdio.h> int count = 0; void CompactIntegers(int a[], int gt); //数组元素,数组元…… 题解列表 2022年12月24日 0 点赞 0 评论 400 浏览 评分:9.9
公共子序列 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int dp[1005][1005];int main(){ string s1,…… 题解列表 2022年12月24日 0 点赞 0 评论 270 浏览 评分:0.0
简单明了,看了就懂 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b; while (scanf("%d %d",&a,&b)!=EOF) { …… 题解列表 2022年12月24日 0 点赞 0 评论 230 浏览 评分:0.0
用筛法求之N内的素数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,i,j,t; scanf("%d",&n); for(i=2;i<=n…… 题解列表 2022年12月24日 0 点赞 0 评论 194 浏览 评分:0.0
求1+2+3+...+n的值-题解(C语言代码)通项直接输出 摘要:解题思路:求1+2+3+...+n的值注意事项:注意输出范围lld参考代码:#include<stdio.h> int main() { long long int n; scanf("%…… 题解列表 2022年12月24日 0 点赞 0 评论 514 浏览 评分:9.9
用指针几行搞定(c语言) 摘要:解题思路:按题意写即可注意事项:使用gets()输入参考代码:#include<stdio.h> #include<string.h> int main() { char str[100],…… 题解列表 2022年12月24日 0 点赞 0 评论 572 浏览 评分:9.9
C语言训练-大、小写问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char a[100]; gets(a); for(…… 题解列表 2022年12月24日 0 点赞 0 评论 268 浏览 评分:9.9
5行代码解决拆分位数问题 摘要:解题思路:printf函数在处理参数的时候是从右向左处理的,所以输入的内容最先被最后一个参数接收参考代码:#include<stdio.h>int main(){ printf("%c %c %…… 题解列表 2022年12月24日 0 点赞 0 评论 315 浏览 评分:9.9
2656: 蓝桥杯2022年第十三届省赛真题-刷题统计(从错误到正确详细带你走一遍!) 摘要:### 2656: 蓝桥杯2022年第十三届省赛真题-刷题统计 #### 题目描述 小明决定从下周一开始努力刷题准备蓝桥杯竞赛。他计划周一至周五每天做 a 道题目,周六和周日每天做 b 道题目。请…… 题解列表 2022年12月24日 0 点赞 1 评论 885 浏览 评分:9.9
java 分段函数 摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class Main{ public static void main(String arg…… 题解列表 2022年12月24日 0 点赞 0 评论 234 浏览 评分:0.0