写c语言不吃纸包鱼你写个??啊 摘要:#include "stdio.h"int main(){ double r,a,m; scanf("%lf",&a); if(a<=100000) r=0.1; else if(a>=100000&…… 文章列表 2024年11月12日 0 点赞 2 评论 115 浏览 评分:6.0
蓝桥杯2024年第十五届省赛真题-传送阵 摘要:#include <bits/stdc++.h> using namespace std; int n, a[1000010], vis[1000010] = { 0 }, cnt[100…… 文章列表 2024年11月08日 0 点赞 0 评论 100 浏览 评分:0.0
2872字符环(注意思路,注意嵌套的动态模拟) 摘要:````python a,b = map(str,input().strip().split()) aa = a+a bb = b+b ma = max(len(aa),len(bb)) m…… 文章列表 2024年11月08日 0 点赞 0 评论 63 浏览 评分:0.0
去掉空格(C语言,不需指针) 摘要:#include<stdio.h>#include<string.h>int main(){ char arr[100]={'0'}; for(int i=0;i<100;i++){ …… 文章列表 2024年11月07日 0 点赞 0 评论 100 浏览 评分:9.9
AcWing 1073. 树的中心 树形dp 摘要: #include using namespace std; const int N=10010,M=2*N,INF = 0x3f3f3f3f; int h[N],…… 文章列表 2024年11月04日 0 点赞 0 评论 76 浏览 评分:0.0
c++猜字游戏 摘要:#include"iostream" #include"random" using namespace std; int c(int min,int max){ random_devi…… 文章列表 2024年11月03日 0 点赞 1 评论 85 浏览 评分:9.9
涂色(区间dp) 摘要:[原题].(https://www.acwing.com/problem/content/2808/ "原题") #include using namespace std; i…… 文章列表 2024年10月24日 0 点赞 0 评论 54 浏览 评分:9.9
——Java知识点(常更新)———— 摘要:实例变量(方法)与类变量(方法)思维导图实例变量与类变量代码public class Main{ public static void main(String[] args){ …… 文章列表 2024年10月24日 0 点赞 0 评论 81 浏览 评分:9.9
【2024级新生必看】新生小白如何学好C语言--蓝桥杯C/C++国奖学长分享 摘要:新手小白如何学好C语言 学习C语言,和你是什么专业的没有关系,做智能车或者机器人,在智工坊不止有计算机、智能系的学长学姐,也有很多艺术系、管理系、建环系等你们的学长学姐都在这里,而且他们也做得很…… 文章列表 2024年10月19日 1 点赞 0 评论 271 浏览 评分:9.9
Road(暂存代码) 摘要:```cpp #include using namespace std; typedef long long ll ; const int N = 1e5+10 ; ll a[N],v[N…… 文章列表 2024年10月17日 0 点赞 0 评论 51 浏览 评分:0.0