Advertisement
winone1208

Untitled

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