Advertisement
Guest User

Untitled

a guest
Jun 26th, 2017
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. #include <iostream>
  2. #include <string>
  3.  
  4. // This enables us to use all std definitions directly.
  5. using namespace std;
  6.  
  7.  
  8. void printTable()
  9. {
  10. int i,j;
  11.  
  12. for ( i = 1; i <= 10; i++ ) {
  13. for ( j = 1; j <= 10 ; j++ )
  14. {
  15. printf("%d",i*j);
  16.  
  17. }
  18. } //Ihre loesung
  19. }
  20.  
  21.  
  22. int main(int argc, char* argv[])
  23. {
  24. printTable("\n") ;
  25.  
  26.  
  27.  
  28. return 0;
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement