Hello,World(C++代码) 摘要:#include<iostream> using namespace std; int main(){ return 0; }解题思路:无,上面的是标准头文件注意事项:几个星号需打参考代码…… 题解列表 2024年11月06日 4 点赞 0 评论 1087 浏览 评分:7.3
小白,看看就行,不动脑袋 摘要:解题思路:注意事项:参考代码:小白菜鸟写的,看看就好#include<iostream>using namespace std;int main(){ int arr[1000]; int…… 题解列表 2024年11月06日 0 点赞 0 评论 182 浏览 评分:0.0
国王的烦恼——发工资,简单方法 摘要:解题思路:如果为6天,金币数为6-0+(6-0)-(0+1)+[(6-0)-(0+1)]-(0+1+1)=14,可推断出为n天时金币为(n-0)+(n-0)-(0+1)+[(n-0)-(0+1)]-(…… 题解列表 2024年11月06日 0 点赞 0 评论 243 浏览 评分:9.9
蓝桥基础练习-字符串对比,初学者暴力解法! 摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h" using namespace std; int main(){ // 定义两个字符串变量s1和s2 …… 题解列表 2024年11月06日 0 点赞 0 评论 263 浏览 评分:6.0
高精度乘法 摘要:#include"bits/stdc++.h" using namespace std; int main(){ string s1,s2; int a1[100000],a2…… 题解列表 2024年11月05日 0 点赞 0 评论 158 浏览 评分:0.0
每一行都有解析的c++代码。 摘要:参考代码:#include <bits/stdc++.h>//c++万能头文件using namespace std;//可以不写,不写的话,在用的地方前加std::int main() {//主函数…… 题解列表 2024年11月05日 1 点赞 0 评论 224 浏览 评分:8.0
高精度减法 摘要:#include"bits/stdc++.h" using namespace std; int main(){ string s1,s2; int a1[1000]={0},…… 题解列表 2024年11月05日 0 点赞 0 评论 413 浏览 评分:0.0
基于c++string特性的解法,但在vs上测试无问题,在网页验证过不去 摘要:解题思路:利用c++本身的string 的特性,来完成解答c++对于string字符串是允许直接对字符串本身进行用 [ ] 的方式来访问字符串中的 单个字符,因此,我们只需通过string库内自带的…… 题解列表 2024年11月05日 0 点赞 1 评论 310 浏览 评分:9.9
高精度加法 摘要:#include"bits/stdc++.h" using namespace std; int main(){ string a1,a2; int b1[20000],b2[…… 题解列表 2024年11月05日 0 点赞 0 评论 160 浏览 评分:0.0
详细注释 2046: 输出全排列 摘要:``` #include #include #include #include #include #include #include #include #include #incl…… 题解列表 2024年11月05日 2 点赞 0 评论 225 浏览 评分:8.0