A PHP Error was encountered

Severity: 8192

Message: str_replace(): Passing null to parameter #3 ($subject) of type array|string is deprecated

Filename: libraries/Filtered_db.php

Line Number: 23

Write C# Program to check whether a triangle can be formed by the given value for the angles.
Q:

Write C# Program to check whether a triangle can be formed by the given value for the angles.

0

Write C# Program to check whether a triangle can be formed by the given value for the angles.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

I have used Visual Studio 2012 for debugging purpose. But you can use any version of visul studio as per your availability..

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
 
public class csharpExercise
{
    static void Main(string[] args)
    {
 
        int anglea, angleb, anglec, sum;
 
       Console.WriteLine("Input three angles of triangle : ");
       anglea = Convert.ToInt32(Console.ReadLine());
       angleb = Convert.ToInt32(Console.ReadLine());
       anglec = Convert.ToInt32(Console.ReadLine());        
 
        // Calculate the sum of all angles of triangle 
        sum = anglea + angleb + anglec;
 
        // Check whether sum=180 then its a valid triangle otherwise invalid triangle
        if (sum == 180)
        {
            Console.WriteLine("It is a valid triangle.\n");
        }
        else
        {
            Console.WriteLine("It is a invalid triangle.\n");
        }  
 
        Console.ReadLine();
    }
}

Result:

Input three angles of triangle : 

70

70

40

It is a valid triangle.

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now