Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

Java Exercises: 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);
  System.out.print("Input number: ");
  n = in .nextInt();
  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.



Java: Tips of the Day

How to sort an ArrayList?

Collections.sort(testList);
Collections.reverse(testList);

That will do what you want. Remember to import Collections though!

Ref: https://bit.ly/32urdSe