English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

write a program with for loop application to display a multiplication table up to 10.
the output should be like this.

1 2 3 4 5 6 7 8 9 10
2 4 6 8 10 12 14 16 18 20
3 .....................................
4 ......................................
5 .....................................
6 .....................................
7 .....................................
8 .....................................
9 .....................................
10 ...............................100

tnx i really need help..

2006-09-03 23:46:08 · 6 answers · asked by atekuya26 1 in Computers & Internet Programming & Design

6 answers

main()
{
int i, j,v=1;
for (i = 1; i<=10; i++)
{

for (j = 1; j<=10;j++)
{
v = v*i
printf ("%d", v);
}
v=1
}
I think this will work..just try..

2006-09-04 00:24:10 · answer #1 · answered by Angellina 1 · 0 0

Yes, I suspect you do. Why not go to the URLs below to get a look at some code and some tutorials? I don't think anyone here wants to try and learn for you or do free homework.

2006-09-04 14:08:08 · answer #2 · answered by griz803 5 · 0 0

What the language you want?

Yet i give a code in qbasic:

i=0
For x=1 to 10
For n=1 to 10
i=x*n
print i,
Next n
print
Next x

* If this didn't help you tell me what language you want to writing in.

2006-09-04 07:19:20 · answer #3 · answered by Babax 3 · 0 0

atekuya26 Try this link and find out for yourself

http://webs.wofford.edu/shifletab/b3contents.htm

2006-09-04 06:54:18 · answer #4 · answered by Joe_Young 6 · 0 0

go to Experts-Exchange for free answers to any tech question...

2006-09-04 06:51:30 · answer #5 · answered by IAN W 2 · 0 1

I don't know

2006-09-04 06:50:09 · answer #6 · answered by amghamkhar 1 · 0 1

fedest.com, questions and answers