โจทย์👉👉👉
ให้รับคะแนนเก็บกลางภาค ปลายภาคแล้วรวมกัน หากคะแนนรวมตั้งแต่ 0-49 ให้แสดงคำว่า You are fail 50-79 แสดงคำว่า Very good 80ขึ้นไป แสดงคำว่า Excellent👈👈
ทำได้แค่แสดงคำ แต่ให้คำนวณก่อนแล้วแสดงคำไม่เป็น ช่วยทีค่ะ😔😔😔😢😢
ได้แค่นี้อ่าา👉👉
#include <stdio.h>
int main () {
int score;
scanf ("%d", &score);
if (score < 50)
printf ("You are Fail");
else if (score <= 79)
printf ("Very good");
else if (score >= 80)
printf ("Excellent");
return 0;
}
เขียนโค้ดภาษาC รวมคะแนนแล้วแสดงคำ ยังไงคะ??
ให้รับคะแนนเก็บกลางภาค ปลายภาคแล้วรวมกัน หากคะแนนรวมตั้งแต่ 0-49 ให้แสดงคำว่า You are fail 50-79 แสดงคำว่า Very good 80ขึ้นไป แสดงคำว่า Excellent👈👈
ทำได้แค่แสดงคำ แต่ให้คำนวณก่อนแล้วแสดงคำไม่เป็น ช่วยทีค่ะ😔😔😔😢😢
ได้แค่นี้อ่าา👉👉
#include <stdio.h>
int main () {
int score;
scanf ("%d", &score);
if (score < 50)
printf ("You are Fail");
else if (score <= 79)
printf ("Very good");
else if (score >= 80)
printf ("Excellent");
return 0;
}