Skip to content

Files

Latest commit

 

History

History

conditional-statements

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Go Programming Exercises: if else statements

To be written

  • Program to find all roots of a quadratic equation
  • Program to calculate profit or loss
  • Program to input marks of five subjects Physics, Chemistry, Biology, Mathematics and Computer. Calculate percentage and grade according to following:
    • Percentage >= 90% : Grade A
    • Percentage >= 80% : Grade B
    • Percentage >= 70% : Grade C
    • Percentage >= 60% : Grade D
    • Percentage >= 40% : Grade E
    • Percentage < 40% : Grade F
  • Program to input basic salary of an employee and calculate its Gross salary according to following:
    • Basic Salary <= 10000 : HRA = 20%, DA = 80%
    • Basic Salary <= 20000 : HRA = 25%, DA = 90%
    • Basic Salary > 20000 : HRA = 30%, DA = 95%
  • Program to input electricity unit charges and calculate total electricity bill according to the given condition:
    • For first 50 units Rs. 0.50/unit
    • For next 100 units Rs. 0.75/unit
    • For next 100 units Rs. 1.20/unit
    • For unit above 250 Rs. 1.50/unit
    • An additional surcharge of 20% is added to the bill