標題:
函式的建立與執行 (一)
[打印本頁]
作者:
王瑞喻
時間:
2020-5-1 14:17
標題:
函式的建立與執行 (一)
本帖最後由 王瑞喻 於 2020-7-7 10:10 編輯
自訂函式:
1. hello()
2. myPlus(int x,int y,int z)
#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()
{
hello();
cout<<myPlus(2,5,1)<<endl;
system("pause");
return 0;
}
複製代碼
#include<iostream>
#include<cstdlib>
using namespace std;
void hello();
int myPlus(int,int,int);
int main()
{
hello();
cout<<myPlus(2,5,1)<<endl;
system("pause");
return 0;
}
void hello()
{
cout<<"HELLO!!"<<endl;
}
int myPlus(int x,int y,int z)
{
return x+y+z;
}
複製代碼
作者:
王翎璇
時間:
2020-5-2 10:44
此帖僅作者可見
作者:
洪藜芸
時間:
2020-5-2 10:44
此帖僅作者可見
作者:
鄭羽捷
時間:
2020-5-2 10:46
此帖僅作者可見
作者:
郭哲維
時間:
2020-5-2 10:46
此帖僅作者可見
作者:
陳宇柏
時間:
2020-5-2 10:47
此帖僅作者可見
作者:
曾宥程
時間:
2020-5-2 10:47
此帖僅作者可見
作者:
蔡少宇
時間:
2020-5-2 10:47
此帖僅作者可見
作者:
黃傳耀
時間:
2020-5-2 10:50
此帖僅作者可見
作者:
王翎璇
時間:
2020-5-2 11:03
此帖僅作者可見
作者:
郭哲維
時間:
2020-5-2 11:09
此帖僅作者可見
作者:
王建葦
時間:
2020-7-7 10:27
此帖僅作者可見
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2