Question: DebugEight1.cs has syntax and/or logical errors. Determine the problem(s), and fix the program. // GetData() method accepts order number and quantity // that are used
DebugEight1.cs has syntax and/or logical errors. Determine the problem(s), and fix the program.
// GetData() method accepts order number and quantity // that are used in the Main() method // Price is $3.99 each using System; using static System.Console; class DebugEight1 { static void Main() { int orderNum, quantity; double total; const double PRICE_EACH = 3.99; GetData(orderNum, out quantity); total = quantity * PRICE_EACH; WriteLine("Order #{0}. Quantity ordered = {1}", orderNum, quantity); } public static void GetData(out int order, out int quantity) { String s1, s2; Write("Enter order number "); s1 = ReadLine(); Write("Enter quantity "); s2 = ReadLine(); order = ConvertToInt32(s1); amount = ConvertToInt32(s2); } }
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
