Câu 1.Sửa lỗi cú pháp cho chương trình trên nếu có. Program KT HK1; Const PI:= 3.14; Var r, S: real; Writeln('Nhap r = ') Readln(N); S:=PI * sqr(r); Writeln('S = ' S:8.1); End. Câu 2.Viết chương trình thông báo một số nguyên được nhập từ bàn phím là số chẵn hay lẻ. Các bạn giúp mik lm nhanh vs ạ Mik sắp thi nên cân gấp ^^^ cảm ơn

2 câu trả lời

Đáp án:

Câu 1:

Program KT HK1; (Cách dòng phải là KT_HK1)

Const PI:= 3.14;

Var r, S: real; 

(Thiếu Begin để bắt đầu chương trình)

Writeln('Nhap r = ')   (Thiếu ";")

Readln(N);   (Ko có khai báo biến N, thay bằng biến r)

S:=PI * sqr(r); 

Writeln('S = ' S:8.1);  ( Sai chỗ S:8.1, phải thay dấu ":" vào và thiếu dấu "," trước S:8:1)

End.

*Sửa lại chương trình:

Program KT_HK1;

Const PI:= 3.14;

Var r, S : real;

Begin

Writeln('Nhap r = ');

Readln(r);

S := PI * sqr(r);

Writeln('S = ', S:8:1);

End.

Câu 2:

Program chanle;

Uses crt;

Var n: integer;

Begin

clrscr;

Write('nhap so n:'); readln(n);

If (a mod 2 = 0) then writeln(n,'la so chan')

else writeln(n,'la so le');

Readln;

End.

#blackwolf4869

Câu 1 : 

- Dòng 1 : tên có khoảng cách

- Thiếu begin để bắt đầu chương trình

- Dòng 2 : sai cú pháp khai báo hằng

- Dòng 4 : thiếu dấu chấm phẩy

- Dòng 5 : sai Readln(N);

- Dòng 7 : sai .1 và thiếu dấu phẩy

- Sửa chương trình :

Program KT_HK1;

Const PI = 3.14;

Var r, S : real;

Begin

Writeln('Nhap r = ');

Readln(r);

S := PI * sqr(r);

Writeln('S = ', S:8:1);

End.

Câu 2 :

uses crt;

var n : integer;

begin

clrscr;

write('nhap so nguyen : ');readln(n);

if n mod 2 = 0 then writeln(n,' la so chan')

else writeln(n,' la so le');

readln

end.

Câu hỏi trong lớp Xem thêm
2 lượt xem
2 đáp án
5 giờ trước

giup e voi I/ Supply the correct form of the verbs in brackets 1. You (think) ……………………… collecting stamps costs much money? 2. Every year, my mother (give) ……………………… me a nice doll on my birthday. 3. Jenny says she loves collecting pens but she (not/continue) ……………………… this hobby from next year. 4. If you wash your hands more, you (have)……………………. less chance of catching flu. 5. Getting plenty of rest is very good. It (help)…………………. you to avoid depression. 6. Mr. John (be) ……………………… principal of our school since last year. 7. I (see) ……………………… a car accident on this corner yesterday. 8. We like (come)……………………to school by bus, but we hate (stand)………………………. and (wait) …………………… in the rain. 9. ……………………… (you/ ever/ meet) anyone famous? 10. My mother (come) ……………………… to stay with us next weekend. 11. When he lived in Manchester, he (work) ……………………… in a bank. 12. We (be) ……………………… students for four years. 13. We are planting trees around our school now. Our school (be) ……………………… surrounded by a lot of green trees. 14. What ……………………… your father usually ……………………… (do) in the evenings? 15. My sister likes (cook) ……………………… very much. She can cook many good foods. 16. My father says when he's retired, he (go) …………………… back to his village to do the gardening. 17. They want (buy) ……………………… some meat for dinner. 18. Linh is my best friend. We (know) ……………………… each other for 5 years. 19. I enjoy (fish) ……………………… because it is relaxing. 20. How about (go) ……………………… to the movie theatre?

3 lượt xem
1 đáp án
1 ngày trước