Viết chương trình in ra các tháng trong năm bằng tiếng anh Vd: t=12 thì in ra màn hình là December Giúp emm <3
1 câu trả lời
code
program baitap;
uses crt;
var t:longint;
begin
write('nhap t=');
read(t);
if t=1 then write('January');
if t=2 then write('February');
if t=3 then write('March');
if t=4 then write('April');
if t=5 then write('May');
if t=6 then write('June');
if t=7 then write('July');
if t=8 then write('August');
if t=9 then write('September');
if t=10 then write('October');
if t=11 then write('November');
if t=12 then write('December');
readln;
readln;
end.