程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> for-關於加法問題,2+22+222+2222.。。。這樣的

for-關於加法問題,2+22+222+2222.。。。這樣的

編輯:編程綜合問答
關於加法問題,2+22+222+2222.。。。這樣的

public class ClassMat26 {
/*
* 題目:求s=a+aa+aaa+aaaa+aa...a的值,其中a是一個數字。
* 例如2+22+222+2222+22222(此時共有5個數相加),幾個數相加有鍵盤控制。
*/

public static int Count;

int test(int a,int i) {
      int aa;
    for ( int j = 0; j <=i; j++) {
        aa = a * 10 + a;
        Count = a + aa;
    }
    System.out.println("Count="+Count);
    return 0;
}

public static void main(String[] args) {
    ClassMat26 cm = new ClassMat26();
    cm.test(2,5);
}

}

我的理解的一直加下去,cm.test(2,5); 表示2為初始的,一共加5次,我這樣的實現哪裡不對嗎;如果參數換位cm.test(5,3);,就是5+55+555 這樣了

最佳回答:


    int aa = 0;
    Count = 0;
    for ( int j = 0; j <i; j++) {
        aa = aa * 10 + a;
        Count += aa;
    }
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved