蓝桥杯2015年第六届真题-饮料换购 摘要:通过规律转换成代码 100 ==> 33瓶+1盖=34盖 ==> 11瓶+1盖=12盖 ==> 4瓶=4盖 ==>1瓶+1盖 ==> 2盖 瓶=n/3 (向下取整) 盖=n%3 #i…… 题解列表 2024年04月11日 0 点赞 0 评论 158 浏览 评分:0.0
蓝桥杯2015年第六届真题-饮料换购-题解(Python代码) 摘要:```python n = int(input()) s = n a = 0 while n > 0: a += 1 if a % 3 == 0: a =…… 题解列表 2020年06月01日 0 点赞 0 评论 509 浏览 评分:0.0
蓝桥杯2015年第六届真题-饮料换购-题解(C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int n;int ans;int main(void){ cin>>n; ans+=n; w…… 题解列表 2020年08月11日 0 点赞 0 评论 193 浏览 评分:0.0
***************************************** 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int n,i,s=0; scanf("%d",&n); /*i=n; while(n…… 题解列表 2021年04月07日 0 点赞 0 评论 165 浏览 评分:0.0
2263: 蓝桥杯2015年第六届真题-饮料换购 摘要: ## public class Drink { static int n = new Scanner(System.in).nextInt(); static int …… 题解列表 2023年03月05日 0 点赞 0 评论 101 浏览 评分:0.0