Java經典程式設計習題100例:第6例:a+aa+aaa+.......+aaaaaaaaa
阿新 • • 發佈:2021-02-07
技術標籤:Java體系java演算法pythonC語言c++
不要自卑,去提升實力
網際網路行業誰技術牛誰是爹
如果文章可以帶給你能量,那是最好的事!請相信自己
加油o~
Java經典程式設計習題,初學者可以參考學習
點選下面連結
Java經典程式設計100例習題彙總
題目描述:
a+aa+aaa+…+aaaaaaaaa=?
解題思路:
其中a為1至9之中的一個數,項數也要可以指定。
程式碼:
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner (System.in);
System.out.println("請輸入a:");
int a = sc.nextInt();
System.out.println("請輸入項數:");
int count = sc.nextInt();
int res = 0;
int temp = 0;
for (int i = 0; i < count; i++) {
if (i == 0) {
temp = a;
res += temp;
} else {
temp = temp * 10 + a;
res += temp;
}
}
System.out.println("結果:" + res);
}
}