source: liacs/pm/backup/datum.cc@ 4

Last change on this file since 4 was 2, checked in by Rick van der Zwet, 15 years ago

Initial import of data of old repository ('data') worth keeping (e.g. tracking
means of URL access statistics)

  • Property svn:executable set to *
File size: 345 bytes
Line 
1// datum.cc
2// Asking question about date-of-birth
3// Author Rick van der Zwet
4
5// v0.01 - 09-09-2004 at 10:59 by Rick van der Zwet
6// First init
7
8#include <iostream>
9#include <ctime>
10#include <string>
11using namespace std;
12
13int main( ) {
14 int Geboortejaar = 0;
15 cout << "Geef uw geboortejaar: ";
16 cin >> Geboortejaar;
17 cout << Geboortejaar;
18}
Note: See TracBrowser for help on using the repository browser.