aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa 摘要:解题思路:wu注意事项:wu参考代码:kunkun#include<iostream>using namespace std;int main(){ int s=0; for(int i=…… 题解列表 2023年06月24日 0 点赞 0 评论 406 浏览 评分:9.9
循环入门练习1 摘要:解题思路:注意事项:参考代码: #include<bits/stdc++.h>using namespace std;int main(){ int sum=0; for(int i=1;…… 题解列表 2023年06月24日 0 点赞 0 评论 180 浏览 评分:0.0
谢谢各位的哥 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){ int sum=0; for(int i=1;i<=1000…… 题解列表 2023年06月24日 0 点赞 0 评论 233 浏览 评分:0.0
c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>struct pointer{ double x; double y;};int main(…… 题解列表 2023年06月24日 0 点赞 0 评论 217 浏览 评分:0.0
小白的想法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int a,n=0; scanf("%d",&a); int g=a,d=a; …… 题解列表 2023年06月24日 0 点赞 0 评论 191 浏览 评分:0.0
循环(就是一个01背包问题,大一上学期看了好久,2023蓝桥杯的那个炼铁一样的题型) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;const int T=101,M=1001;int cost[T],value[T],dp[…… 题解列表 2023年06月24日 0 点赞 0 评论 619 浏览 评分:4.0
报数问题(本来想用递归来写的,没写出来,水平真的有限【苦涩】,链表实战也不行【哭】) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,i,a[100],ko=0,num=0; scanf("%d",&n); for(…… 题解列表 2023年06月24日 0 点赞 0 评论 223 浏览 评分:9.9
1013-Sn的公式求和 摘要:解题思路:采用高精度加法解决本题。注意事项:参考代码:int arr[1000]={0}; int main(){ int n; int i,len,j; len=0; scanf(…… 题解列表 2023年06月23日 0 点赞 0 评论 114 浏览 评分:0.0
c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n, category[3] = { 0 }; scanf("%d", &n); wh…… 题解列表 2023年06月23日 0 点赞 0 评论 233 浏览 评分:0.0
STL& set[STL训练]{A} + {B} 摘要:# 使用STL库的`set`容器 > 自带去重和排序的功能,就不需要调用排序函数了 ```c++ #include #include #include #include usi…… 题解列表 2023年06月23日 0 点赞 0 评论 237 浏览 评分:0.0