To check a triangle whether it is right angled or not. (Qbasic Code)

To check a triangle whether it is right angled or not.
  • CLS
    INPUT "First angle of triangle"; a
    INPUT "Second angle of triangle"; b
    INPUT "Third angle of triangle"; c
    IF a = 90 OR b = 90 OR c = 90 THEN
        PRINT "It is right angled triangle";
    ELSE
        PRINT "It is not right angled triangle";
    END IF
    END

Share :

Twitter
Back To Top

facebook main

counter

Powered by Blogger.