#include using namespace std; /* run this program using the console pauser or add your own getch, system("pause") or input loop */ void show(string a1,int a2, int a3); int showAge(int birthyear); int main(int argc, char** argv) { show("john",95,99); showAge(1990); show("jolin",65,100); showAge(1987); return 0; } void show(string a1,int a2, int a3) { cout<<"學生姓名是:"<