双指针查找字符串中包含几个单词 摘要:#include<iostream> using namespace std; int main(void) { string s; getline(cin,s); //有空格输入 …… 文章列表 2024年01月24日 0 点赞 0 评论 189 浏览 评分:0.0
第二次训练--D问题(C++解析) 摘要:# D问题解析 ## 前言 这道题考察了递推和高精度,但是高精度只是点缀。可能很多小伙伴通过java、python语言绕过了高精度。这样做没什么意义。因为java、python组真考高精度,难点永…… 文章列表 2024年01月24日 0 点赞 0 评论 743 浏览 评分:0.0
精品文章 教学功能常见使用问题汇总 摘要:常见问题汇总如下,持续更新中。提示,大家可以使用Ctrl+F快速查找Q1:举办比赛是否收费?A:免费 ,普通用户达到P2等级,或教师认证即可Q2:能不能自己出题,用自己的题创建比赛?是否收费?A:可以…… 文章列表 2024年01月23日 1 点赞 3 评论 3015 浏览 评分:9.9
大庆趣编程2班C++知识点 摘要: 1 int范围 : 21亿 2 bool :布尔值 3 <bits/stdc++.h>:万能头文件 4 printf("%.2lf",a); :保留2位小数 5…… 文章列表 2024年01月09日 0 点赞 0 评论 675 浏览 评分:9.9
格莱尔报数游戏 摘要:#include <bits/stdc++.h>using namespace std;int main(){ for(int i =1;i<=2000000000000000000000000…… 文章列表 2024年01月08日 0 点赞 0 评论 150 浏览 评分:9.9
bmi体质指数测试器 摘要:#include <bits/stdc++.h>using namespace std;int main(){ double height,weight,bmi; cout << "体重(…… 文章列表 2024年01月07日 0 点赞 0 评论 180 浏览 评分:9.9
GGBOD买兰博基尼 摘要://期末来临了,班长GGBOD决定将剩余1%班费1个亿美元,用于购买若干支钢笔奖励给一些学习不好、表现不好的同学。已知商店里有三种钢笔,它们的单价为0.00000000000000000000006元…… 文章列表 2024年01月06日 0 点赞 0 评论 166 浏览 评分:9.9
老登登dua郎 摘要://晶晶的男友贝贝约下周一起去登dua郎,但晶晶每周的1、3、5有逝必需去世,请帮晶晶判断她能否接受老登的邀请//解题思路:康一下晶晶今天有没有去世参考代码:#include <bits/stdc++…… 文章列表 2024年01月06日 0 点赞 0 评论 172 浏览 评分:9.9
星期判断机 摘要:#include <bits/stdc++.h>using namespace std;int main(){ int a; cin >>a; switch(a) { c…… 文章列表 2024年01月06日 0 点赞 0 评论 117 浏览 评分:0.0
求3个数中间值 摘要:#include <bits/stdc++.h>using namespace std;int main(){ double n,x,y; cin >>n>>x>>y; y = ce…… 文章列表 2024年01月06日 0 点赞 0 评论 102 浏览 评分:6.0