Advertisement
LegoDrifter

K.A 6

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