返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<time.h>
  4. using namespace std;
  5. int Hello()
  6. {
  7.     return 100;   
  8. }
  9. int main()
  10. {
  11.     cout<< Hello()<<endl;
  12.     system("pause");
  13.     return 0;   
  14. }
複製代碼

TOP

返回列表