Write a program that will display the seven times table using an expression in a loop. That expression will multiply 7 by each of the numbers 1 through 12. Display numbers on each line in order. Produce one for loop and an identical while loop performing the identical process in one program.

Microsoft Visual C#
7th Edition
ISBN:9781337102100
Author:Joyce, Farrell.
Publisher:Joyce, Farrell.
Chapter14: Files And Streams
Section: Chapter Questions
Problem 17RQ
icon
Related questions
Question

Write a program that will display the seven times table using an expression in a loop.

That expression will multiply 7 by each of the numbers 1 through 12.

Display numbers on each line in order.

Produce one for loop and an identical while loop performing the identical process in one program.

( I had posted this question earlier and I kept getting invalid synatx.) 

class Test46{
public static void main (String args [])
int n = 7,i;
for (i=1;i<=12;i++)
System.out.println (n +" x "+ i + " = "+ (n*i));
System.out.println ();
i=1;
while (i<=12) {
System.out.println (n + " x "+ i + " = "+ (n*i)) ;
i++;
{
{
Transcribed Image Text:class Test46{ public static void main (String args []) int n = 7,i; for (i=1;i<=12;i++) System.out.println (n +" x "+ i + " = "+ (n*i)); System.out.println (); i=1; while (i<=12) { System.out.println (n + " x "+ i + " = "+ (n*i)) ; i++; { {
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 2 images

Blurred answer
Knowledge Booster
Types of Loop
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.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Microsoft Visual C#
Microsoft Visual C#
Computer Science
ISBN:
9781337102100
Author:
Joyce, Farrell.
Publisher:
Cengage Learning,