[ create a new paste ] login | about

alf1230

Name:
Email:
Site/Blog:
Location:
Default language:
Favorite languages:
About:

Saved pastes by alf1230:

C++, pasted on Sep 29:
1
2
3
4
// This code is based on the "Guess My Number" game.
// There are 2 computers players. 
// The first computer will pick a number, and the second tries to guess it.
// The 2nd computer will ask to play again, and the first will answer.
...
view (82 lines, 33 lines of output)
C++, pasted on Sep 29:
1
2
3
4
5
#include <iostream>
#include <ctime>
#include <cstdlib>

using namespace std;
...
view (67 lines, 142 lines of output)