Skip to content
Permalink
eb3f8fa127
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
23 lines (22 sloc) 667 Bytes
#include <string>
#include <iostream>
void Starter(){
cout<< "Hello. Welcome to timetabler 3.0!"<<endl;
}
int Activity(){
int choice;
cout<<"What would you like to do today: \n"
"(1). Add Student(s) to the registry. \n"
"(2). Add Classes to the registry. \n"
"(3). Find the timetable for a student. \n"
"(4). Nothing, thank you. \n"
"--Please enter your choice in a form of a single digit ex: 2--" <<endl;
cin>>choice;
return choice;
}
void Ender(){
cout<<"Thank you for using timtabler 3.0 and have a great rest of your day!"<<endl;
}
//string Courses(){
//cout<<"Would you like to "
//}