K
Khách

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.

30 tháng 12 2021

#include <bits/stdc++.h>

using namespace std;

double a,b,c,d,t;

int main()

{

cin>>a>>b>>c>>d;

t=(a*3+b*2+c+d)/7;

cout<<fixed<<setprecision(2)<<t<<endl;

if (t>=8) cout<<"Gioi";

else if ((t>=6.5) and (t<8)) cout<<"Kha";

else if ((t>=5) and (t<6.5)) cout<<"Trung binh";

else cout<<"Yeu";

return 0;

}

19 tháng 5 2021

var dtb: array[1..1000] of real;

i,n: integer;

Chương trình:

uses crt;

  var dtb: array[1..1000] of real;

  i,n: integer;

      begin

      clrscr;

   Write ('so luong 45 hoc sinh: ');  readln (n);

   for i:=1 to n do;

 begin;

write ('nhap diem trung binh hoc sinh thu ',i,': ');  readln (a[i]);

end;

   write ('day diem vua nhap: ');

   for i:=1 to n do write (a[i]:2:2);

readln;

end.

var diemtb:array[1..45]of real;

#include <bits/stdc++.h>

using namespace std;

double a,b,tb;

int main()

{

cin>>a>>b;

tb=(a+b*2)/3;

cout<<fixed<<setprecision(2)<<tb<<endl;

if (tb>=8.0) cout<<"Gioi";

else if ((tb>=6.5) and (tb<8)) cout<<"Kha";

else if ((tb>=5.0) and (tb<6.5)) cout<<"Trung binh";

else cout<<"Yeu";

return 0;

}

27 tháng 12 2021

#include <bits/stdc++.h>

using namespace std;

double a,b,kq;

int main()

{

cin>>a>>b;

kq=(a+b*2)/3;

cout<<fixed<<setprecision(2)<<kq;

return 0;

}

3 tháng 1 2022

bạn ơi có sai gì ko vậy

#include <bits/stdc++.h>

using namespace std;

double a[100],t;

int n,i;

int main()

{

cin>>n;

for (i=1; i<=n; i++) cin>>a[i];

for (i=1; i<=n; i++)

cout<<"Diem cua ban thu "<<i<<" la: "<<fixed<<setprecision(2)<<a[i]<<endl;

t=0;

for (i=1; i<=n; i++) t+=a[i];

cout<<"Trung binh cua lop la: "<<fixed<<setprecision(2)<<t/(n*1.0);

return 0;

}

#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;

}

14 tháng 4 2023

# 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")

25 tháng 12 2020

Bạn phải cho biết là có bao nhiêu cột điểm đã chứ

bao nhiêu cột miệng, 15', 1 tiết?

27 tháng 12 2020

3 hệ số 1

1 hệ số 2

1 hệ số 3