Commit 69e049be by glkink

Add new file

parent 850b5719
Showing with 29 additions and 0 deletions
#include <stdio.h>
int main(void)
{
int i, j;
int n = 0;
printf("Sisesta arv: ");
scanf("%d", &n);
printf("%4c |", ' ');
for (i = 0; i <= n; i++)
printf("%4d", i);
printf("\n");
for (i = 0; i <= n; i++)
{
printf("%4d |", i);
for (j = 0; j <= n; j++)
{
printf("%4d", i * j);
}
printf("\n");
}
return 0;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment