標題:
305 函式與陣列 (運算判斷)
[打印本頁]
作者:
陳育霖
時間:
2023-8-18 22:04
標題:
305 函式與陣列 (運算判斷)
1. 題目說明:
請依下列題意進行作答,使輸出值符合題意要求。
2. 設計說明:
請撰寫一程式,包含名為compute()的函式,接收主程式傳遞的一個陣列,陣列中有三個整數,陣列中索引值1代表運算符號(+或*),若輸入1則索引值前後數值相加;輸入2則相乘,compute()計算運算結果並回傳至主程式輸出。
提示:若使用 Java 語言答題,請以「JP」開頭命名包含 main 靜態方法的 class,評測系統才能正確評分。
3. 輸入輸出:
輸入說明
三個整數
輸出說明
根據輸入值輸出運算結果
範例輸入1
12
1
15
範例輸出1
27
範例輸入2
7
2
10
範例輸出2
70
本帖隱藏的內容需要回復才可以瀏覽
作者:
曾宥程
時間:
2023-8-19 11:48
#include<bits/stdc++.h>
using namespace std;
int q[3];
int compute(int q[3])
{
if(q[1]==1)
return q[0]+q[2];
else
return q[0]*q[2];
}
int main()
{
for(int i=0 ; i<3 ; i++)
cin >> q[i];
cout << compute(q) << endl;
return 0;
}
複製代碼
作者:
王銘鴻
時間:
2023-9-1 22:41
#include<bits/stdc++.h>
using namespace std;
int compute(int a[3])
{
if(a[1]==1)
return a[0]+a[2];
else
return a[0]*a[2];
}
int main()
{
int arr[3];
for(int i=0 ; i<3 ; i++)
cin >> arr[i];
cout << compute(arr) << endl;
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2