/* kerho.cpp */ /* Kerho-ohjelman p„„menu ja sen testi. Vesa Lappalainen 6.12.1995 */ #include void paamenu(int jasenia) { cout << "\n\n\n\n" << endl; cout << "J„senrekisteri" << endl; cout << "==============" << endl; cout << endl; cout << "Kerhossa on " << jasenia << " j„sent„." << endl; cout << endl; cout << "Valitse:" << endl; cout << " ? = avustus" << endl; cout << " 0 = lopetus" << endl; cout << " 1 = lis„„ uusi j„sen" << endl; cout << " 2 = etsi j„senen tiedot" << endl; cout << " 3 = tulosteet" << endl; cout << " 4 = tietojen korjailu" << endl; cout << " 5 = p„ivit„ j„senmaksuja" << endl; cout << " :"; } int main(void) { paamenu(10); return 0; }