1332: 津津的储蓄计划 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[12];//每个月的预算 int i; for(i=0;i<12;i++) { scanf("%…… 题解列表 2023年08月03日 0 点赞 1 评论 158 浏览 评分:4.7
储蓄简单方法 摘要:解题思路:注意事项:参考代码:sum = 0list1 = []count = 0sum_mom = 0flag = 1 #若不破产flag = 1for i in range(12): #12个月 …… 题解列表 2023年11月14日 0 点赞 0 评论 207 浏览 评分:6.0
津津的储蓄计划 摘要:e,大家凑活着看,这第一次与这个编译模式... ``` //#include //#include //#include #include using namespace std; i…… 题解列表 2024年03月10日 0 点赞 1 评论 257 浏览 评分:7.3
津津的储蓄计划——for循环解题。(有细节) 摘要:解题思路:注意事项:不看会吃亏。(开玩笑的,我是菜鲲,欢迎大佬点评!)参考代码:#include<stdio.h>int main(){ int s=0,j=0,i,k=0; int a[…… 题解列表 2022年12月15日 0 点赞 0 评论 325 浏览 评分:8.0
津津的储蓄计划(不懂我吃屎) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main() { int cost, f, mama = 0, flag = 1, money = 0, i = 1;// c…… 题解列表 2022年11月21日 0 点赞 0 评论 442 浏览 评分:8.7
java--study||O.o 摘要:参考代码:import java.util.Scanner; public class Main { public static void main(String[] args) …… 题解列表 2024年01月12日 0 点赞 0 评论 138 浏览 评分:9.9
津津的储蓄计划(简单明了) 摘要:解题思路:输出格式用%d时,不能用(存钱总数*1.2+12月份直接表示,因为它是实数型),要转换类型,才能得到正确结果。注意事项:参考代码:#include<stdio.h>int main(){ …… 题解列表 2023年02月09日 0 点赞 0 评论 735 浏览 评分:9.9
无敌妈妈存钱计划!!!!!!!!!!!!!!!! 摘要:解题思路:数组存储接收变量注意事项:参考代码:/* residue[0]=300-budget; residue[1]= 循环//residue[0]+300-budget[1];// …… 题解列表 2024年07月28日 0 点赞 0 评论 210 浏览 评分:9.9
c语言初学者对津津的救赎 摘要:解题思路:每次算出存钱的累加和实时捏在手上的零钱,预算过大则跳出输出-x注意事项:注意存在妈妈那里的钱是一直在增加的,而津津自己的零钱是不断更新的。为防止数据遗忘,私人钱设为pri(private),…… 题解列表 2023年11月07日 0 点赞 0 评论 365 浏览 评分:9.9
1332: 津津的储蓄计划(python) 摘要:解题思路:注意事项:参考代码:m = 0 x = 0 month = 1 isTrue = True while True: try: n = int(input(…… 题解列表 2023年02月21日 0 点赞 0 评论 413 浏览 评分:9.9