新手较简单的数组方法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[55]; int i; a[0]=1;a[1]=2;a[2]=3;a[3]=4; for…… 题解列表 2024年11月11日 0 点赞 0 评论 120 浏览 评分:9.9
自定义整数处理 摘要:import java.util.Scanner;public class JavaTestBank_45 { public static void main(String[…… 题解列表 2024年11月11日 0 点赞 0 评论 122 浏览 评分:9.9
直接写就行了 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<math.h> int main() { &nbs…… 题解列表 2024年11月11日 1 点赞 0 评论 178 浏览 评分:9.9
最低通行费 (数字三角形模型dp) 摘要: 二选一:我也不知道为什么限制为什么不同。 方法一: #include using namespace std; const int N=110; i…… 题解列表 2024年11月11日 0 点赞 0 评论 29 浏览 评分:9.9
看不懂直接喷我 摘要:解题思路:注意事项: 看我评论!!!!!参考代码: #include #include int main() { int i; char a…… 题解列表 2024年11月11日 0 点赞 1 评论 62 浏览 评分:9.9
简单易懂while循环就可以完成 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ long int a,n,Tom; while(sc…… 题解列表 2024年11月11日 0 点赞 0 评论 64 浏览 评分:9.9
题解 3142: 蓝桥杯2023年第十四届省赛真题-平方差(数学证明正解+打表找规律) 摘要:### 数学证明: 对于偶数和奇数分别有如下证明: 对任意偶数可以表示为:2*k,其中k为正整数。假如该偶数满足题目条件:x = y^2-z^2,即2*k = (y + z) * (y -…… 题解列表 2024年11月11日 0 点赞 0 评论 59 浏览 评分:9.9
[编程入门]结构体之成绩统计2 摘要:```c #include struct a { char a[30]; char b[30]; //结构体 int c; int d; int e; }…… 题解列表 2024年11月12日 1 点赞 0 评论 249 浏览 评分:9.9
字符串最大跨距(指针方法) 摘要:解题思路:使用strstr函数反复查找寻找到字符串最后出现的位置,最后利用指针相减的特性求出跨距。注意事项:注意录入数据时的格式;注意strstr查找不到字符串时会返回空指针(NULL);重复查找时注…… 题解列表 2024年11月12日 0 点赞 0 评论 39 浏览 评分:9.9
试了下另一个选项 摘要:解题思路:题目也说了,但好奇试了下,输出no,不行。注意事项:参考代码:#include<studio.h>int main(){ pr…… 题解列表 2024年11月12日 0 点赞 0 评论 41 浏览 评分:9.9