answersLogoWhite

0


Best Answer

here-

class tableof5

{

public static void main()

{int i;

for(i=1;i<=10;i=i+1)

{System.out.println("5"+"*"+i+"="+i*5);

}

}

}

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How do you make a program for a multiplipication table?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

How do you write a java program to make a periodic table?

See the related links section for a link to a JAR file containing this program.


How do you write a binomial distribution table in C program?

Class&amp;genus


Program for create a student detail in a table using HTML?

Oracle is a great program for creating a student detail in a table using HTML. One can even use a word processing platform too.


How you can delete a column from the table?

Can you be more specific? What kind of table do you mean, and what program are you using? A SQL statement like this will do it: alter table tblName drop column colName tblName is the name of the table colName is the name of the column


How to write C multiplication table?

/****************************************** * C Program to print MultiplicationTable * * Author of the Program: M.JAYAKUMAR..* * Date 23 Nov 2006 * * ***************************************/ #include&lt;stdio.h&gt; main() { int i, p=1, table[10]; /* define integres and array */ /* *************************** * Output Formating Begins * ***************************/ for(i=0;i&lt;61;i++) printf("#"); printf("\n# Program to print Multiplication table of any number"); printf("\n# NOTE: To exit type 0 \n"); for(i=0;i&lt;61;i++) printf("#"); /* *************************** * Output Formating ENDS * ***************************/ while(p != 0) { printf("\nWhich table "); scanf("%d",&amp;p); /* takes input from input */ for(i=0;i&lt;10;i++) /* Fills the array */ { if(p==0) /* Stratagy to exit the program Benins */ { printf("Exiting\n"); break; } /* Stratagy to exit the program ends */ table[i]=i+1; /* Fills the array with numbers 1 - 10 */ printf("%2d x %2d = %2d\n", p, table[i], p * table[i]); } } }

Related questions

How do you write a java program to make a periodic table?

See the related links section for a link to a JAR file containing this program.


How do you draw event table in software engineering?

You could use a drawing program to help out. The right program can help to make the job easier.


What two items are contained in the master boot record?

The master boot program, and the partition table.


Symbol table program?

Yes.


Can you create a table with word processing program?

yes you can


How do you make table by straws and sticks?

how to make a table with straws


How do you program a sharp cash register XE-A22S?

how do i set tax table, or change the tax table


What is the HTML code to make link inside a table?

You have to use the anchor tag to make a link. The code will be &lt;a&gt;&lt;table&gt;Table-Stuff&lt;/table&gt;&lt;/a&gt;.


What software can help a small production company make a time table?

Small production companies can make time tables by using manufacturing-oriented software such as Inventory 2 Invoice or SAP. One can also use a simple spreadsheet program such as Microsoft Excel to generate a time table.


What is a small program that runs when you start computer?

File Allocation table


How do you write a binomial distribution table in C program?

Class&amp;genus


Program for create a student detail in a table using HTML?

Oracle is a great program for creating a student detail in a table using HTML. One can even use a word processing platform too.