Answered step by step
Verified Expert Solution
Question
1 Approved Answer
C# write a program named InputMethodDemo2 that eliminates the repetitive code in the InputMethod() in the InputMethodDemo program in Figure 8-5. Rewrite the program so
C#
write a program named InputMethodDemo2 that eliminates the repetitive code
in the InputMethod() in the InputMethodDemo program in Figure 8-5. Rewrite the
program so the InputMethod()contains only two statements:
one = DataEntry("first");
two = DataEntry("second");
Write the code by consulting the figure, run, fix errors.
using System; using static System.Console; class Input MethodDemo Notice the { keyword out. static void Main() { int first, second; InputMethod (out first, out second); WriteLine("After InputMethod first is {0}", first); WriteLine("and second is {0}", second); } private static void InputMethod(out int one, out int two) { string s1, s2; Write("Enter first integer "); s1 = ReadLine(); Notice the Write("Enter second integer "); keyword out. s2 ReadLine(); Convert.ToInt32 (s1); two = Convert.ToInt32(s2); } } one =Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started