返回列表 發帖
本帖最後由 張凱婷 於 2017-10-31 18:14 編輯

#include<iostream>
#include<cstdlib>
#include<time.h>
using namespace std;
int Hello()
{     
  return 100;   
}
int main()
{
cout<< Hello()<<endl;
system("pause");
return 0;   
   }

TOP

返回列表