Bài 7. Câu lênh lặp

H24

viết chương trình nhập vào các điểm thi windows, winword,winword,execl.Tính điểm trung bình(lấy giá trị có 1 số lẻ thập phân)

PG
7 tháng 9 2023 lúc 22:26

program TinhDiemTrungBinh;

uses crt;

var

     diemWindows, diemWinword, diemExcel, diemTrungBinh: real;

begin

     clrscr;

     writeln('Nhập điểm thi Windows:');

     readln(diemWindows);

     writeln('Nhập điểm thi Winword:');

     readln(diemWinword);

     writeln('Nhập điểm thi Excel:');

     readln(diemExcel);

     diemTrungBinh := (diemWindows + diemWinword + diemExcel) / 3;

     writeln('Điểm trung bình: ', diemTrungBinh:0:1);

     readln;

end.

Bình luận (0)
PK
21 tháng 1 lúc 22:58

var

     Windows, Winword, Excel, TB: real;

begin

     clrscr;

     writeln('Nhập điểm thi Windows:');

     readln(Windows);

     writeln('Nhập điểm thi Winword:');

     readln(Winword);

     writeln('Nhập điểm thi Excel:');

     readln(Excel);

    TB := (Windows + Winword + Excel) / 3;

     writeln('Điểm trung bình: ', TB:0:1);

     readln;

end.

Bình luận (0)

Các câu hỏi tương tự
PK
Xem chi tiết
H24
Xem chi tiết
BT
Xem chi tiết
LK
Xem chi tiết
LD
Xem chi tiết
HH
Xem chi tiết
MD
Xem chi tiết
MU
Xem chi tiết
LT
Xem chi tiết