How to calculate the sum of a sequence in java
Nov 25, 2019 pm 05:55 PMTitle description:
Input n and a, find a aa aaa...aa...a (n a), for example, when n=3, a=2 , the result of 2 22 222 is 246.
java related video tutorial: java teaching video
Input:
contains two integers, n and a, the meaning is as above, you can assume n and a are both non-negative integers less than 10
Output:
Output the sum of the first n terms, occupy a separate line
Sample input:
3 2
Sample output:
246
Program code:
import java.util.*; public class Main { public static void main(String[] args) { Scanner input=new Scanner(System.in); int n=input.nextInt(); int x=input.nextInt(); int sum=0,b=x; for(int i=1;i<=n;i++) { sum+=x; x=x*10+b; } System.out.println(sum); } }
For more related articles, please visit: Introduction to java development
The above is the detailed content of How to calculate the sum of a sequence in java. For more information, please follow other related articles on the PHP Chinese website!

Hot Article

Hot tools Tags

Hot Article

Hot Article Tags

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Break or return from Java 8 stream forEach?
