判断第几天c++简单代码 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>//万能头文件using namespace std;int main(){ int y,m,d,a[12]={31,…… 题解列表 2023年08月05日 0 点赞 0 评论 200 浏览 评分:10.0
C++ 归并排序 摘要: #include #include using namespace std; int main() { int a; cin >> a;//输入整数个数 …… 题解列表 2023年09月13日 0 点赞 0 评论 309 浏览 评分:10.0
优质题解 Cylinder圆柱体:简单的数学逻辑题 摘要:解题思路:本题中要求最大的圆柱体积,则需要分两种情况考虑,最后比较得出最大的体积作为最后的结果,这里就是考虑没有用来切割圆柱底面的那一半纸张的哪一边用来卷圆面周长的两种情况,每一种只考虑正好卷完没有重…… 题解列表 2023年09月27日 0 点赞 0 评论 286 浏览 评分:10.0
三位数反转(两种思路) 摘要:参考代码: 第一种,这种思路最后位可能会出现0,比如210,执行后会变成012 ```c #include int main() { int a; while(~scanf("%…… 题解列表 2023年10月01日 0 点赞 0 评论 673 浏览 评分:10.0
1979: 求平均工资 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cmath> using namespace std; int main() { int n; …… 题解列表 2023年10月17日 1 点赞 0 评论 132 浏览 评分:10.0
计算输入数据的和与乘积(用char数组存) 摘要:参考代码: ```c #include #include int main() { char a[100]; gets(a); int len=strlen(a); int …… 题解列表 2023年10月28日 0 点赞 0 评论 190 浏览 评分:10.0
C语言训练-阶乘和数* 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h> int Weishu(int n)//判断位数{ int i = 0; while (n …… 题解列表 2023年10月31日 0 点赞 0 评论 241 浏览 评分:10.0
蓝桥杯算法训练-数据交换 摘要:参考代码: ```c #include void swap(int *x,int *y) { int t=*x; *x=*y; *y=t; } int mai…… 题解列表 2023年10月31日 0 点赞 0 评论 119 浏览 评分:10.0
C++_dfs容易理解 摘要:解题思路:10个位置每个位置上找到满足的数放置注意事项:参考代码:#include <iostream>#include <cmath>using namespace std;int n;int ar…… 题解列表 2023年11月05日 0 点赞 1 评论 233 浏览 评分:10.0
题解 2799: 奥运奖牌计数 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int a,b,c,d,b1=0,c1=0,d1=0,s; …… 题解列表 2023年11月06日 1 点赞 0 评论 105 浏览 评分:10.0