Eric 把本學期三次月考的四科分數存放到二維陣列的資料結構,在C++中如 s[3][4]={{92,87,82,56 },{88,82,77,62},{52,71,48,68}},或者在Python中如s=[[92,87,82,56],[88,82,77,62],[52,71,48,68]] ,接著打算找出共有幾次考不及格,你能幫他撰寫出程式碼嗎?
輸入不及格標準分數
輸出共有幾次考不及格
60
3
#include
using namespace std;
int main(){
int s[3][4]={{92,87,82,56},{88,82,77,62},{52,71,48,68}};
int i,j,l;
int found=0;
cin >>l;
for (i=0; i<3; i++)
for (j=0; j<4; j++)
if (s[i][j] < l)
found = found +1;
cout << found;
return 0;
}
s=[[92,87,82,56],[88,82,77,62],[52,71,48,68]]
found = 0
l = int(input())
for i in range(len(s)):
for j in range(len(s[0])):
if s[i][j] < l:
found = found + 1
print(found)
編號 | 身分 | 題目 | 主題 | 人氣 | 發表日期 |
沒有發現任何「解題報告」 |