Advertisement
DarthLucius

Exercise3

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