Advertisement
Guest User

Untitled

a guest
Oct 21st, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. // ConsoleApplication2.cpp: определяет точку входа для консольного приложения.
  2. //
  3.  
  4. #include "stdafx.h"
  5. #include <iostream>
  6.  
  7.  
  8. void pook()
  9. {
  10. for (int i = 1; i <= 9; i++)
  11. {
  12. for (int j = 1; j <= 9; j++)
  13. {
  14. printf_s("%d\t", j*i);
  15. }
  16. printf_s("\n");
  17. }
  18. }
  19.  
  20. int _tmain(int argc, _TCHAR* argv[])
  21. {
  22. pook();
  23. return 0;
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement