#25814: C language 簡易寫法


22207807 (會打Code的貓)

學校 : 逢甲大學
編號 : 156777
來源 : [140.134.241.201]
最後登入時間 :
2023-03-14 12:33:09
a148. You Cannot Pass?! | From: [114.137.217.137] | 發表日期 : 2021-06-24 15:03

#include<stdio.h>

int main () {

float n,s[100] = {0},total;

while(scanf("%f",&n) != EOF) {

total = 0;

for(int i = 0; i < n; i++) {

scanf("%f",&s[i]);

total += s[i];

}

if(total / n > 59) {

printf("no\n");

} else {

printf("yes\n");

}

}

return 0; 

注意文字敘述

注意資料型態

 
ZeroJudge Forum