Advertisement
Sayukoo

Wielokrotnosc liczb 1,2,3,4,5,6,7,8,9

Oct 8th, 2019
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.24 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. int i,x;
  4. int main()
  5. {
  6.     for(i=1;i<10;i++)
  7.     {
  8.         x=i*i;
  9.         printf("Wielokrotnosc liczby %d = %d\n",i,x);
  10.     }
  11.  
  12.     return 0;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement