1. Write a java program:  Your program should have 6 lines of output listing five colors. The sample output will like this: Five colors are: Blue Green Red Purple Orange Your output should have the first line exactly as shown above. The following 5 lines should be your own.

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

1. Write a java program
Your program should have 6 lines of output listing five colors. The sample output will like
this:
Five colors are:
Blue
Green
Red
Purple
Orange
Your output should have the first line exactly as shown above. The following 5 lines should
be your own.

2.Write a java program: 
Your program should take one command-line argument, a person's name, and create output
using that name. For example, if you enter the name: Alex, the output should be:
Hello Alex, how are you?
Use String concatenation to create your output statement.

3.Write a java program: 
This program should take two command line arguments and create the following output. For
example, if the command line values were Bob and Alice, the output would be:
Hello Bob, my name is Alice.
Use String concatenation to create your output statement.

4.Write a java program: 
Using a single print() method [i.e., System.out.print()], create output of the first 6 lines
(including the title) of the following poem. Include quotations and newline characters in your
output.
The Irish Colonel
Said the king to the colonel,
"The complaints are eternal,
That you Irish give more trouble
Than any other corps."
Said the colonel to the king,
"This complaint is no new thing,
For your foemen, sire,
have made it A hundred times before."
- Sir Arthur Conan Doyle

5.Write a java program: 
Your program will input 2 integer values from the command-line. (Remember the
command-line input enters your program through main() method. You'll need to convert the
values from String data type to integer data type. Use Integer.parseInt() method.)
Using the two values entered (which could be any integers), create the following output
statements (the example assumes the input values were 10 and 14):
10 + 14 = 24
10 - 14 = -4
10 X 14 = 140
10 / 14 = 0
10 % 14 = 10
You will have 5 lines of output. Put spaces in your output as shown in the sample output.

Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps with 1 images

Blurred answer
Similar questions
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