- #include<iostream>
- #include<cstdlib>
- using namespace std;
- void hello()
- {
- cout<<"這是hello函式"<<endl;
- }
- int main()
- {
- cout<<"這是主函式的hello"<<endl;
- hello();
- system("pause");
- return 0;
- }
複製代碼- #include<iostream>
- #include<cstdlib>
- using namespace std;
- void hello()
- {
- cout<<"這是hello函式"<<endl;
- }
- int myPlus(int x,int y,int z)
- {
- return x+y+z;
- }
- int main(){
- cout<<"myPlus 1+2+3="<<myPlus(1,2,3)<<endl;
- cout<<"這是主函式的hello"<<endl;
- hello();
- system("pause");
- return 0;
- }
複製代碼 |