w3resource

Java: Accepts an integer (n) and computes the value of n+nn+nnn

Java Basic: Exercise-44 with Solution

Write a Java program that accepts an integer (n) and computes the value of n+nn+nnn.

Sample Solution:

Java Code:

import java.util.Scanner;

public class Exercise44 {
    public static void main(String[] args) {
        int n;
        char s1, s2, s3;
        Scanner in = new Scanner(System.in);
        
        // Prompt the user to input a number.
        System.out.print("Input number: ");
        n = in.nextInt();
        
        // Display the number in a specific pattern.
        System.out.printf("%d + %d%d  + %d%d%d\n", n, n, n, n, n, n);
    }
}

Sample Output:

Input number: 5                                                        
5 + 55  + 555

Flowchart:

Flowchart: Java exercises: Accepts an integer (n) and computes the value of n+nn+nnn

Java Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a Java program to print the following string in a specific format.
Next: Write a Java program to find the size of a specified file.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.