Advertisement
Guest User

Untitled

a guest
Sep 25th, 2017
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. #include <iostream>
  2. #include <conio.h>
  3. #include <algorithm>
  4. #include <string>
  5.  
  6. using namespace std;
  7.  
  8. int main()
  9. {
  10. string line;
  11. string tempStr;
  12. for (int i= 2, i<10, i++)
  13. {
  14. for (int j=1, i<10, j++)
  15. {
  16. tempStr = to_string(i) + " * " to_string(j) + "=" + to_string(i*j);
  17. line += tempStr + "\t";
  18. }
  19. cout << line;
  20. }
  21. system("pause");
  22. return 0;
  23. }
  24. Хади Намир
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement