Advertisement
Guest User

Untitled

a guest
Nov 12th, 2019
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main()
  5. {
  6. int einmaleins[10] = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10};
  7.  
  8. cout << "#### Das kleine Einmaleins ####";
  9. cout << "\t" << endl;
  10.  
  11.  
  12. for (int einmaleins = 1; einmaleins <= 10; einmaleins++)
  13. {
  14. cout << einmaleins;
  15. cout << "\t";
  16. }
  17. for (int einmaleins = 1; einmaleins <= 10; einmaleins++)
  18. {
  19. cout << einmaleins;
  20. cout << "\t" << endl;
  21. }
  22. system("PAUSE");
  23.  
  24. return 0;
  25.  
  26.  
  27.  
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement