Trong tiết toán sáng nay Chiến được cô giáo dạy cho định nghĩa về tam giác, cô giáo có giao bài tập về nhà cho Chiến, đề bài như sau: “cho số đo góc của 3 góc, hỏi 3 góc đó có thể là 3 góc trong 1 tam giác hay không?“. Do vừa mới học được buổi đầu tiên nên kiến thức về tam giác của Chiến còn khá ít. Chiến đành nhờ các bạn giúp Chiến đê có thể trả lời câu hỏi trên. Đầu vào : cho 3 sô nguyên m,n,p ( 0 <= m,n,p ≤ 180) lần lượt là số đo của 3 góc Yêu cầu : kiểm tra xem 3 số nguyên kia có thể là số đo của 3 góc trong 1 tam giác không, nếu đúng in ra mà hình YES, nếu không in ra màn hình NO

2 câu trả lời

var m,n,p,t:longint;
begin
write('nhap 3 canh tam giac:');writeln;
read(m,n,p); writeln;
if m<=0 then write('NO')else
if n<=0 then write('NO')else
if p<=0 then write('NO')else
t:=m+n+p;
if t=180 then write('YES') else write('NO');
readln;
end.

`( 0 <= m,n,p ≤ 180)`

**********pascal**************

uses crt;
var m,n,p:integer;
begin
clrscr;
write('nhap so do 3 goc: ');
readln(m,n,p);
if (m<0) and (n<0) and (p<0) then writeln(m:2,n:2,p:2,' nho hon 0')
 else 
    if (m+n+p=180) then writeln(m:2,n:2,p:2,' la so do 3 goc cua tam giac')
        else writeln(m:2,n:2,p:2,' khong la so do 3 goc cua tam giac');
readln
end.

$\href{https://onlinegdb.com/S21eXHDfx}{\text{tham khảo code pascal tại đây}}$

************Python*******************

m=int(input('nhập số đo góc m'))
n=int(input('nhập số đo góc n'))
p=int(input('nhập số đo góc p'))
if m<0 and n<0 and p<0 :
    print(m,n,p,' nhỏ hơn 0')
else :
        if (m+n+p==180) :
            print(m,n,p,'là số đo 3 góc của tam giác')
        else :
                print(m,n,p,' không là số đo 3 góc của tam giác')

$\href{https://onlinegdb.com/QaSNkXAD6}{\text{tham khảo code python tại đây}}$

Câu hỏi trong lớp Xem thêm

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
17 giờ trước