Advertisement
Fakhru

Untitled

Feb 15th, 2014
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.32 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main()
  5. {
  6. int arr[2][3] = {{2,4,6} , {6,8,10}};
  7.  
  8. cout << "\t Pizza \t KFC \t McDonalds \nMan \t   " << arr[0][0] << "\t  " << arr[0][1] << "\t  " << arr[0][2] << endl;
  9. cout << "Woman \t   " << arr[1][0] << "\t  " << arr[1][1] << "\t  " << arr[1][2];
  10. system("pause");
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement