题解 1332: 津津的储蓄计划

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

津津的储蓄计划

摘要:解题思路:数组与for循环注意事项:参考代码:int main(){ int m1[12] = { 0 }; int m2[13] = { 300,0,0,0,0,0,0,0,0,0,0,0,0 };……

津津的储蓄计划

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    int money=0,month=1,ys,count=0;    for(int i=1;i<13;i……

c语言利用数组

摘要:解题思路:#includeint main(){    int month_consume[12]; //每月的消费    int month_save=0;   //单月的剩余    float a……

津津的储蓄计划java

摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Test {    public static void main(String[] args……

津津的储蓄计划

摘要:注意事项: 只有交给母亲的整钱才加20%,别忘了到最后可以还有余钱,没成整的 参考代码: ```c #include int main() { int a,k,sum=0; dou……