nostrus |
|
|
|
Dołączył: 02 Mar 2006 |
Posty: 3 |
Przeczytał: 0 tematów
Ostrzeżeń: 0/5
|
|
|
|
|
|
|
|
Dobra, już nie ważne, teraz mam prośbę, żeby ktoś mi sprawdził czy dobrze mam
#include <stdio.h>
int main()
{
int x, y;
const int rozm = 10;
for (y=1; y<=rozm; y=y+1)
{
for (x=1; x<=rozm; x=x+1)
{
printf("%d\t", x*y);
}
}
getchar();
return 0;
} |
|