美文网首页
C语言-用函数实现财务现金记账

C语言-用函数实现财务现金记账

作者: 广陵周惊蛰 | 来源:发表于2020-01-08 14:03 被阅读0次

    问题描述:用函数实现财务现金记账

    源代码:

    /*用函数实现财务现金记账*/
    #include<stdio.h>
    
    float cash;
    void income(float number),expend(float number);
    
    int main(void)
    {
        int choice;
        float value;
        
        cash=0;
        printf("Enter operate choice(o--end,1--income,--expand):");
        scanf("%d",&choice);
        while(choice!=0){
            if(choice==1||choice==2){
                scanf("%f",&value);
                if(choice==1)
                    income(value);
                else
                    expend(value);
                printf("current cash:%.2f\n",cash);
            }
            printf("Enter operate choice(o--end,1--income,--expand):");
            scanf("%d",&choice);
        }
        return 0;   
    }
    
    void income(float number)
    {
        cash=cash+number;
    }
    void expend(float number)
    {
        cash=cash-number;
    }
    

    运行结果:

    财务现金记账

    程序心得:

    全局变量在相对较大的项目中使用,常常会造成不同函数的相互干扰,所以在变量使用中,应尽量使用局部变量。

    程序参数:

    • 输出大小: 149.9189453125 KiB
    • 编译时间: 0.30s

    相关文章

      网友评论

          本文标题:C语言-用函数实现财务现金记账

          本文链接:https://www.haomeiwen.com/subject/rwqsactx.html