use c# Programming You invoke a method by its name followed by a pair of brackets and the usual semi-colon Write a method called DisplayPersonalInfo(). This method will display your name, school, program and your favorite course. Call the DisplayPersonalInfo() method from your program Main() method Write a method called CalculateTuition(). This method will prompt the user for the number of courses that she is currently taking and then calculate and display the tuition cost. (cost = number of course * 569.99). Call the CalculateTuition() method two times from the same Main() method as in question 1. Write a method call CalculateAreaOfCircle(). This method will prompt the user for the radius of a circle and then calculate and display the area.[A = πr2]. Call the CalculateAreaOfCircle() method twice from the same Main() method as in question 1. Use Math.Pi for the value of π Write a method call CalculateAreaOfTriangle(), that prompts the user for the base and height of a triangle and then calculate and display the area.[ ] Call the CalculateAreaOfTriangle() method twice from the same Main() method as in question 1. Write a method call CalculateSaleCommission(), that prompts the user for his sales figure, and then calculate and display his commission. (commission = 25% of sales in excess of 1000. If sales is equal to or below $1000.00 there is no commission) Call the CalculateSaleCommission() method three times from the same Main() method as in question 1. Write a method call DisplaySineTable(), that prompts the user for a starting value and an step size. The method will calculate and display a table (10 rows) of sine values based on the user input. Use the built-in method Math.Sin() to obtain the sine of an angle. e.g. if the starting value is 0.5 and the step size is 0.03 the method will display the following table: 0.50 0.4794 0.53 0.5055 0.56 0.5311 0.77 0.6961 The numbers in both columns MUST be right aligned. Call the DisplaySineTable() method from the same Main() method as in question 1. In a write a method called DisplayMenu() to display the following text on screen: ===========Narendra’s Computer Systems================ | 1. Display Personal Information | | 2. Calculate Tuition | | 3. Calculate Area Of A Circle | | 4. Calculate The Area Of A Triangle | | 5. Calculate Sales Commission | | 6. Display Sine Table | | 0. End program | | | ====================================================== Enter the number of your choice -> You may replace the instructor’s name with your name.Yodit Add another method called ShowMenu() to your project. This method will call the method in question 7 continuously until the user presses 0. (You will have to invoke the method in a loop body, read in the user input as well as check the input). You will need to hook up all the methods that you wrote previously i.e. questions 1 to 6. Replace all the code from your Main() method with a single call to the
OOPs
In today's technology-driven world, computer programming skills are in high demand. The object-oriented programming (OOP) approach is very much useful while designing and maintaining software programs. Object-oriented programming (OOP) is a basic programming paradigm that almost every developer has used at some stage in their career.
Constructor
The easiest way to think of a constructor in object-oriented programming (OOP) languages is:
use c# Programming
You invoke a method by its name followed by a pair of brackets and the usual semi-colon
-
Write a method called DisplayPersonalInfo(). This method will display your name, school, program and your favorite course. Call the DisplayPersonalInfo() method from your program Main() method
-
-
Write a method called CalculateTuition(). This method will prompt the user for the number of courses that she is currently taking and then calculate and display the tuition cost. (cost = number of course * 569.99). Call the CalculateTuition() method two times from the same Main() method as in question 1.
-
Write a method call CalculateAreaOfCircle(). This method will prompt the user for the radius of a circle and then calculate and display the area.[A = πr2].
Call the CalculateAreaOfCircle() method twice from the same Main() method as in question 1. Use Math.Pi for the value of π -
Write a method call CalculateAreaOfTriangle(), that prompts the user for the base and height of a triangle and then calculate and display the area.[ ]
Call the CalculateAreaOfTriangle() method twice from the same Main() method as in question 1. -
Write a method call CalculateSaleCommission(), that prompts the user for his sales figure, and then calculate and display his commission. (commission = 25% of sales in excess of 1000. If sales is equal to or below $1000.00 there is no commission)
Call the CalculateSaleCommission() method three times from the same Main() method as in question 1. -
Write a method call DisplaySineTable(), that prompts the user for a starting value and an step size. The method will calculate and display a table (10 rows) of sine values based on the user input. Use the built-in method Math.Sin() to obtain the sine of an angle. e.g. if the starting value is 0.5 and the step size is 0.03 the method will display the following table:
0.50 0.4794
0.53 0.5055
0.56 0.5311
0.77 0.6961
The numbers in both columns MUST be right aligned. Call the DisplaySineTable() method from the same Main() method as in question 1. -
In a write a method called DisplayMenu() to display the following text on screen:
===========Narendra’s Computer Systems================
| 1. Display Personal Information |
| 2. Calculate Tuition |
| 3. Calculate Area Of A Circle |
| 4. Calculate The Area Of A Triangle |
| 5. Calculate Sales Commission |
| 6. Display Sine Table |
| 0. End program |
| |
======================================================
Enter the number of your choice ->You may replace the instructor’s name with your name.Yodit
Add another method called ShowMenu() to your project. This method will call the method in question 7 continuously until the user presses 0. (You will have to invoke the method in a loop body, read in the user input as well as check the input). You will need to hook up all the methods that you wrote previously i.e. questions 1 to 6. Replace all the code from your Main() method with a single call to the -
Trending now
This is a popular solution!
Step by step
Solved in 3 steps with 4 images