Viết bằng C++: Nhập vào bàn phím 3 số là 3 cạnh của tam giác, xét xem tam giác đó là tam giác VUÔNG, VUÔNG CÂN, THƯỜNG. output: CAN, VUONG CAN, THUONG

2 câu trả lời

#include<iostream>
using namespace std;
int main(){
    int a, b, c;
    cout<<"Nhap vao canh a: ";
    cin>>a;
    cout<<"Nhap vao canh b: ";
    cin>>b;
    cout<<"Nhap vao canh c: ";
    cin>>c;
    if( a<b+c && b<a+c && c<a+b ){
        if( a*a==b*b+c*c || b*b==a*a+c*c || c*c== a*a+b*b)
            cout<<"Day la tam giac vuong";
        else if(a==b && b==c)
            cout<<"Day la tam giac deu";
        else if(a==b || a==c || b==c)
            cout<<"Day la tam giac can";
        else if(a*a > b*b+c*c || b*b > a*a+c*c || c*c > a*a+b*b)    
            cout<<"Day la tam giac tu";
        else
            cout<<"Day la tam giac nhon";
    }
    else
        cout<<"Ba canh a, b, c khong phai la ba canh cua mot tam giac";
    return 0;
}


#include <iostream>
using namespace std;
int main()
{
     int a, b, c;
     cout<<" nhập độ dài cạnh a :"; cin>> a;
     cout<<" nhập độ dài cạnh b :"; cin>> b;
     cout<<" nhập độ dài cạnh c :"; cin>> c;
     if ((a + b> c) and( a+ c> b ) and(b+ c> a)){
          if ((a*a == b*b + c*c ) or ( b*b == a*a + c*c ) or ( c*c == b*b + a*a )){
               cout<<" đây là tam giác vuông  "<< endl;
          }
          if ((a == b) and (b == c) and (a ==c)){
               cout <<" đây là tam giác đều "<< endl;
          }
          if ((a == b) or (b == c) or (a ==c)){
               cout <<" đây là tam giác cân"<< endl;
          }
          else{
               cout<<" đây là tam giác thường "<< endl;
          }
     }
     else{ 
          cout<<" ba cạnh không thuộc tam giác "<< endl;
     }
    return 0;
}

Câu hỏi trong lớp Xem thêm
5 lượt xem
2 đáp án
22 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