Nhập điểm trung bình (dtb) của một học sinh từ bàn phím, sau đó in ra màn hình xếp loại của học sinh này.
• Nếu 8⩽dtb⩽10: Xếp loại Giỏi
• Nếu 6.5⩽dtb<8: Xếp loại Khá
• Nếu 5⩽dtb<6.5: Xếp loại Trung bình
• Nếu 0⩽dtb<5: Xếp loại Yếu
Hãy nhập câu hỏi của bạn vào đây, nếu là tài khoản VIP, bạn sẽ được ưu tiên trả lời.
Mình viết ở ngôn ngữ c++ nhé:
#include<iostream>
using namespace std;
int main() {
double a;
cout << "Diem trung binh : "; cin >> a;
if (a >= 1 && a <= 10) {
if (a >= 8) {
cout << "Gioi";
} else if (a >= 6.5 && a <= 7.9) {
cout << "kha";
} else if (a <= 6.4 && a >= 5) {
cout << "trung binh";
} else {
cout << "yeu";
}
} else {
cout << "Diem so khong hop le";
}
return 0;
}
uses crt;
var NS:array[1..100] of integer; Dtoan,Dvan,Dtb:array[1..100] of real;
hoten:array[1..100] of string; i:byte;
begin
clrscr;
for i:=1 to 45 do
begin
write('Nhap ten cua hoc sinh thu',i,':'); readln(hoten[i]);
write('Nhap ngay sinh:'); readln(NS[i]);
write('Nhap diem toan:'); readln(Dtoan[i]);
write ('Nhap diem van:'); readln(Dvan[i]);
Dtb[i]:=(Dtoan[i]+Dvan[i])/2;
end;
writeln('Diem trung binh cua cac ban trong lop la:');
for i:=1 to 45 do
writeln(hoten[i],':',Dtb[i]:1:2);
readln;
end.
Tham khảo thui!
# Nhập điểm từ bàn phím
diem = float(input("Nhập điểm của học sinh: "))
# Xếp loại học lực dựa trên điểm số
if diem >= 8:
print("Học sinh giỏi")
elif diem >= 6.5:
print("Học sinh khá")
elif diem >= 5:
print("Học sinh trung bình")
elif diem >= 3.5:
print("Học sinh yếu")
else:
print("Học sinh kém")
#include <bits/stdc++.h>
using namespace std;
double a[10],b,c,tb;
int n,i,dem;
int main()
{
cout<<"Nhap so cot thuong xuyen:"; cin>>n;
tb=0;
for (i=1; i<=n; i++)
{
cin>>a[i];
tb=tb+a[i];
}
cin>>b>>c;
tb=tb+b+c;
cout<<fixed<<setprecision(2)<<tb/(n+2)<<endl;
if (tb>=8) cout<<"Gioi";
else if ((tb>=6.5) and (tb<8)) cout<<"Kha";
else if ((tb>=5) and (tb<6.5)) cout<<"Trung binh";
else cout<<"Yeu";
return 0;
}
#include <bits/stdc++.h>
using namespace std;
double a[10],b,c,tb;
int i,n;
int main()
{
cout<<"Nhap so cot thuong xuyen:"; cin>>n;
for (i=1; i<=n; i++) cin>>a[i];
cout<<"Nhap diem giua ki:"; cin>>b;
cout<<"Nhap diem cuoi ki:"; cin>>c;
tb=0;
for (i=1; i<=n; i++) tb=tb+a[i];
tb=tb+b+c;
tb=tb/((n+2)*1.0);
cout<<fixed<<setprecision(2)<<tb<<endl;
if (tb>=8) cout<<"Gioi";
else if ((tb>=6.5) and (tb<8)) cout<<"Kha";
else if ((tb>=5) and (tb<6.5)) cout<<"Trung binh";
else cout<<"Yeu";
return 0;
}
uses crt;
var diem:real;
begin
clrscr;
repeat
write('Nhap diem trung binh:'); readln(diem);
until (0<=diem) and (diem<=10);
if diem<5 then writeln('Xep loai yeu')
else if (5<=diem) and (diem<6.5) then writeln('Xep loai trung binh')
else if (6.5<=diem) and (diem<8.0) then writeln('Xep loai kha')
else writeln('Xep loai gioi');
readln;
end.