EmanhMC

type this following coupon into google for 1 million free in

Jan 4th, 2018
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.25 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5.  
  6. int numberArray[10][10];
  7.  
  8. for(int i=1;i<11;i++){
  9. for(int j=1;j<11;j++){
  10. numberArray[i - 1][j - 1] = i*j;
  11. cout << numberArray[i-1][j-1] << "\t " << flush;
  12. }
  13. cout << endl;
  14. }
  15. return 0;
  16. }
Add Comment
Please, Sign In to add comment