如果不是格式化怎么弄?比如数据结构中的任意组合? 摘要:#include<stdio.h> int main() { int a=0,b=0,right_count=0,status,sum=0; char c[4]={'+',&…… 题解列表 2022年01月11日 0 点赞 0 评论 242 浏览 评分:0.0
汽水瓶递归解题思路(c++) 摘要:解题思路: 首先,题目这里说的是每三瓶可以换一瓶,在这里我看到的人第一想法就是,用这个数去除三,得到的数再去除三,这一个反复的过程,但是如果是偶数的话他会多出一瓶,所以我的出的公式是(n/3)+…… 题解列表 2022年01月11日 0 点赞 0 评论 679 浏览 评分:9.9
编写题解 1920: 蓝桥杯算法提高VIP-上帝造题五分钟(python) 摘要:解题思路:注意事项:参考代码:x,y=map(int,input().split())s1=input().split()s=[]for i in s1: s.append(int(i))for…… 题解列表 2022年01月11日 0 点赞 0 评论 409 浏览 评分:0.0
编写题解 1018: [编程入门]有规律的数列求和(C语言) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int N; float sum; float a=2,b=1; scanf("%d"…… 题解列表 2022年01月11日 0 点赞 0 评论 750 浏览 评分:0.0
先对空瓶子整除,再求余 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { int empty=0; while(1){ scanf("%d",&empty); …… 题解列表 2022年01月11日 0 点赞 0 评论 284 浏览 评分:9.9
求圆的面积 摘要:解题思路:注意事项:double与float均可以定义浮点型变量,float 单精度浮点数在机内占 4 个字节,用 32 位二进制描述。后面跟%f.double 双精度浮点数在机内占 8 个字节,用 …… 题解列表 2022年01月11日 1 点赞 0 评论 1551 浏览 评分:9.2
编写题解 1918: 蓝桥杯算法提高VIP-最大最小值(python) 摘要:解题思路:注意事项:参考代码:m=int(input())s=[]n=input().split()for i in range(0,m): s.append(int(n[i]))print(m…… 题解列表 2022年01月11日 0 点赞 0 评论 342 浏览 评分:0.0
创建两个数组即可 摘要:解题思路:注意事项:参考代码:#include<stdio.h> typedef struct input_time{ int year; int month; int…… 题解列表 2022年01月11日 0 点赞 0 评论 263 浏览 评分:9.9
蓝桥杯基础练习VIP-Sine之舞-题解(Python代码) 摘要:# 蓝桥杯基础练习VIP-Sine之舞-题解(Python代码) ## 解题思路 ``` A1 = "sin(1)" A2 = "sin(1-sin(2))" A3 = "sin(1-sin…… 题解列表 2022年01月11日 0 点赞 1 评论 643 浏览 评分:9.9
递归方法实现括号匹配-正则问题 摘要:```cpp #include #include #include using namespace std; string s; int pos=0; int dfs(){ i…… 题解列表 2022年01月11日 0 点赞 0 评论 468 浏览 评分:9.9