Write a program which prompts the user for a number and prints the numbers from 1 up to that number, one per line, and then prints out "That's all!". Some of the code has been provided for you. For example, if the user enters 3 the program should print:

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question

Write a program which prompts the user for a number and prints the numbers from 1 up to that number, one per line, and then prints out "That's all!". Some of the code has been provided for you.

For example, if the user enters 3 the program should print:

Enter a number: 3
3
That's all!
At right you can see a single test case you can use to verify that your code compiles and to see what is the printed output of running y
you cannot see. It is up to you to ensure your program does the right thing, otherwise you won't get points.
I Full Screen
Classljava 8
1. import acm. program. ;
2 import acm.util.*;
New
3
4 public class Class1 extends CommandLineProgram
5- {
6
public void run()
7-
{
int number
println(""); // DO NOT REMOVE. Inserts blank line after test case input.
8
readInt ("Enter a number: ");
10
// YOUR CODE HERE.
}
11
12
13
Transcribed Image Text:Enter a number: 3 3 That's all! At right you can see a single test case you can use to verify that your code compiles and to see what is the printed output of running y you cannot see. It is up to you to ensure your program does the right thing, otherwise you won't get points. I Full Screen Classljava 8 1. import acm. program. ; 2 import acm.util.*; New 3 4 public class Class1 extends CommandLineProgram 5- { 6 public void run() 7- { int number println(""); // DO NOT REMOVE. Inserts blank line after test case input. 8 readInt ("Enter a number: "); 10 // YOUR CODE HERE. } 11 12 13
Expert Solution
steps

Step by step

Solved in 4 steps with 2 images

Blurred answer
Knowledge Booster
Constants and Variables
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education