Advertisement
nRikee

Prolog Style.

Sep 28th, 2012
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.21 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7.     cout << 16, 64, 100 << endl <<
  8.     16, 100, 64  << endl <<
  9.     64, 16, 100 << endl <<
  10.     64, 100, 16 << endl <<
  11.     100, 16, 64 << endl <<
  12.     100, 64, 16 << endl;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement