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:
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.
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics