C語言--輸出列印表格

來源:互聯網
上載者:User
////  invest.c//  day05////  列印一個投資利率表//  列印100元在指定年份內投資,按相應回報率計算收益 ,程式輸出如下://  利率:  6%年份:5////  Year 6%7%          8%        9%         10%//   1   106         107         108       109         110//   2         112.36     114.49      116.64    118.81       121//   3         119.10     122.50      125.97    129.50      133.10//   4//   5//  Created by apple on 13-6-6.//  Copyright (c) 2013年 apple. All rights reserved.//#include <stdio.h>//通過迭代方式計算利率。double income(int y,double r){        double i = 0.0;    if(y==1){        i = 100 * (1 + r);        printf("%.2lf\n",i);    }else{        y -= 1;        i = income(y, r) * (1 + r);        printf("%.2lf\n",i);    }        return i;}int main(){    int year = 0;    double rate = 0.0;    printf("請輸入利率:");    scanf("%lf",&rate);    printf("請輸入年份:");    scanf("%d",&year);        income(year,rate);            return 0;}
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.