Advertisement
immuntasir

Untitled

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