Advertisement
immuntasir

Untitled

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