w3resource

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


Compute n+nn+nnn

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


For more Practice: Solve these Related Problems:

  • Modify the program to accept any number of repetitions.
  • Write a program to compute the sum in reverse order.
  • Compute the sum using a mathematical formula instead of concatenation.
  • Write a program to compute n+nn+nnn+nnnn.

Go to:


PREV : Twinkle Poem Formatter.
NEXT : File Size Finder.


Java Code Editor:

Contribute your code and comments through Disqus.

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.