1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
aivan3 [116]
3 years ago
7

Click the above image

Computers and Technology
1 answer:
damaskus [11]3 years ago
7 0

Answer:

Follows are the cdo0de to this question:

import java.util.*;//package  

public class Table //defining class Table

{

   public static void main(String[] asx)//main method  

   {

       int x,y,i;//defining integer variables

       Scanner bg=new Scanner(System.in);//creating Scanner class object

       System.out.print("Enter first number: ");//print message  

       x=bg.nextInt();//input value

       System.out.print("Enter Second number: ");//print message

       y=bg.nextInt();//input value

       for(i = 1; i <= y; i++)//defining for loop for print Table

       {

           System.out.printf("%d * %d = %d \n", x, i, x * i);//calculate and print table

       }

   }

}

Output:

Enter first number: 5

Enter Second number: 3

5 * 1 = 5  

5 * 2 = 10  

5 * 3 = 15

Explanation:

In the above code, three integer variable "x,y, and i" is declared, in which "x,y" variable is used to input value from the user end, and after input, the value the for loop is used, in which the second variable "y" count the rows, and "i, x" variable is used for calculates the multiplication of the table.  

You might be interested in
When you're writing for mobile devices, use ________ to present the most important information first and provide successive laye
kogti [31]

Answer:

An inverted pyramid style.

6 0
3 years ago
Which tag provides information about a web site?
maw [93]
Metatags provide information about web-sites. They are invisible on the page, and can contain for example a page description that google picks up for showing in the search results. A list of keywords is also commonly added using a meta tag. 

Here is an example:

  <span><meta<span> name="description" content="My very cool webpage on pets."</span>></span>
<span>  </span><span><meta<span> name="keywords" content="dogs, cats"</span>></span>
<span>  </span><span><meta<span> name="author" content="John Doe"</span><span>></span></span>
8 0
4 years ago
What game is a great example of a story unfolding as the levels increase where the player learns more about the plight of the pr
Phantasy [73]
Fortnite and mario kart are good examples
4 0
3 years ago
Read 2 more answers
Ivan inputs a phone number into cell A2 of an Excel workbook. He formats the cell using a phone number format: (555) 987-6543. I
Temka [501]
The formula if he copies correctly if not plain numbers
8 0
4 years ago
How to write my name in binary code ? Rivas
wel

Your name in binary would be "01010010 01101001 01110110 01100001 01110011"

3 0
3 years ago
Read 2 more answers
Other questions:
  • When you want to print a page from the World Wide Web, select the print command in the _____.
    8·2 answers
  • Which of the following is where you can save, select a template, change document properties, and close or exit excel?
    8·1 answer
  • Alisa Miller claims that today's college graduates:
    7·1 answer
  • An object contains data and the instructions that manipulate the data (Points : 2) True
    8·1 answer
  • The letters LAN stand for Area Network.
    9·2 answers
  • _______________ is the use of IT in communication. a) email b) Chatting c) FTP d) All of the above
    7·1 answer
  • Why is data processing done in computer?​
    14·1 answer
  • Write a program in Java to input a letter. If it is an uppercase letter then
    7·1 answer
  • Which device is used to direct the flow of data on a computer network?
    13·1 answer
  • Passing an argument by ___ means that only a copy of the arguments value is passed into the parameter variable and not the addrt
    6·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!