#include using namespace std; //buy函數的定義 void buy() { cout << "買了車子。\n"; } //buy函數的利用 int main() { buy(); cout << "再買進一台車子。\n"; buy(); return 0; }