[编程入门]筛选N以内的素数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main() { int n; scanf("%d",&n); for(int i=2;i<=n;i++) { int…… 题解列表 2023年06月08日 0 点赞 0 评论 210 浏览 评分:9.9
c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char str[101]; int n,i; scanf…… 题解列表 2023年06月08日 0 点赞 0 评论 192 浏览 评分:0.0
C++字符串连接 摘要:# string ```c++ #include using namespace std; int main() { string a,b; while(cin>…… 题解列表 2023年06月08日 0 点赞 0 评论 275 浏览 评分:0.0
与圆形相关的计算C++ 摘要:解题思路:定义 半径,圆周率,直径,周长,面积。注意事项: 引入#include <iomanip>参考代码:#include <iostream>#include <iomanip>using na…… 题解列表 2023年06月07日 0 点赞 0 评论 509 浏览 评分:9.9
动态规划,两个背包同时算 摘要:#### 动态规划 ``` void solve() { int N = in.nextInt(), M = in.nextInt(), K = in.nextInt(); …… 题解列表 2023年06月07日 0 点赞 0 评论 546 浏览 评分:0.0
太难了我不想打代码[STL训练]{A} + {B} 摘要:解题思路:set容器可以排序、去重、所以用它太几把合适了,先这样,在那样,最后那样,然后他妈的发现错了注意事项: 注意进厂时机!!!参考代码:#includeusing namespace s…… 题解列表 2023年06月07日 0 点赞 0 评论 218 浏览 评分:0.0
c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>int compare(void const* a,void const* b){ int n…… 题解列表 2023年06月07日 0 点赞 0 评论 195 浏览 评分:0.0
c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>void delete(char n[],int x){ int i; for (i = x - 1; i < strlen…… 题解列表 2023年06月07日 0 点赞 0 评论 168 浏览 评分:0.0
c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char str[33]; gets(str); str[strlen(st…… 题解列表 2023年06月07日 0 点赞 0 评论 246 浏览 评分:0.0