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

TOP

返回列表