Viết chương trình nhập tên học sinh và điểm của 3 môn học: Toán, Văn và Lí trong đó Văn và Toán hệ số 2, Lí hệ số 1 và xếp hạng học tập như sau: Dưới 5 điểm: Yếu / Từ 5 điểm đến dưới 7 điểm : Trung bình / Từ 7 điểm đến dưới 9 điểm: Khá
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.
#include <bits/stdc++.h>
using namespace std;
double a,b,c,tb;
int main()
{
cin>>a>>b>>c;
tb=((a+b)*2+c)/5;
if (tb>=9) cout<<"Gioi";
else if ((tb>=7) and (tb<9)) cout<<"Kha";
else if ((tb>=5) and (tb<7)) cout<<"Trung binh";
else cout<<"Yeu";
return 0;
}
Xử lí những dữ liệu là điểm ba môn Toán,Văn, Anh
Những kiểu dữ liệu đó phải có kiểu số thực
program DiemTB;
var
diemToan, diemVan, diemTB: real;
begin
write('Nhap diem mon Toan: ');
readln(diemToan);
write('Nhap diem mon Van: ');
readln(diemVan);
diemTB := (diemToan + diemVan) / 2;
writeln('Diem trung binh: ', diemTB:0:2);
if diemTB >= 5 then
writeln('Chuc mung! Ban da dau ky thi.')
else
writeln('Rat tiec! Ban da truot ky thi.');
readln;
end.
câu 1:
uses crt;
var a,b,c,d,ln:integer;
begin
clrscr;
write('a='); readln(a);
write('b='); readln(b);
write('c='); readln(c);
write('d='); readln(d);
ln:=a;
if ln<b then ln:=b;
if ln<c then ln:=c;
if ln<d then ln:=d;
writeln('so lon nhat la: ',ln);
readln;
end.
câu 2:
uses crt;
var v,t,l:integer;
tb:real;
begin
clrscr;
write('nhap diem van:'); readln(v);
write('nhap diem toan:'); readln(t);
write('nhap diem ly:'); readln(l);
tb:=(v*2+t*2+l)/5;
if tb<5 then writeln('kem');
if (tb>=5) and (tb<7) then writeln('trung binh');
if (tb>=7) and (tb<8) then writeln('kha');
if tb>=8 then writeln('gioi');
readln;
end.
#include <bits/stdc++.h>
using namespace std;
double a,b,c,tb;
int main()
{
cin>>a>>b>>c;
tb=((a+b)*2+c)/5;
if (tb>=9) cout<<"Gioi";
else if ((tb>=7) and (tb<9)) cout<<"Kha";
else if ((tb>=5) and (tb<7)) cout<<"Trung binh";
else cout<<"Yeu";
return 0;
}