c# Good day, i am suppose to ask the user for a number i have it assigned to Num1 and then do a simple division calculation, my problem is that when i do the last output for the user it is being read as 0 and i do know i assigned x as zero, but how do i do it so its what the user input? here is some of my work so far : using System; namespace ClassSubmissionAssignment { class Program { static void Main(string[] args) {    Console.WriteLine("Hiya, Please enter a number: "); string num1 = Console.ReadLine(); int Num1 = Convert.ToInt32(num1);    int Num2; //Num2 is an integer datatype int total1;//total1 is an integer datatype Operations OpObj = new Operations();//instantiating the class OpObj.methodOne(out Num1, out Num2, out total1); Console.WriteLine("Number we will be dividing by " + Num2); Console.WriteLine("The total of" + Num1 + "/" + Num2+ "=" + total1); } } } using System; namespace ClassSubmissionAssignment { public class Operations { public void methodOne(out int x, out int y, out int total) {    x = 0; y = 4; total = x / y;    } } }

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter13: Overloading And Templates
Section: Chapter Questions
Problem 12PE
icon
Related questions
Question

c#

Good day,

i am suppose to ask the user for a number

i have it assigned to Num1

and then do a simple division calculation, my problem is that when i do the last output for the user it is being read as 0 and i do know i assigned x as zero, but how do i do it so its what the user input?

here is some of my work so far :

using System;

namespace ClassSubmissionAssignment
{
class Program
{
static void Main(string[] args)
{
  
Console.WriteLine("Hiya, Please enter a number: ");
string num1 = Console.ReadLine();
int Num1 = Convert.ToInt32(num1);
  
int Num2; //Num2 is an integer datatype
int total1;//total1 is an integer datatype

Operations OpObj = new Operations();//instantiating the class

OpObj.methodOne(out Num1, out Num2, out total1);
Console.WriteLine("Number we will be dividing by " + Num2);
Console.WriteLine("The total of" + Num1 + "/" + Num2+ "=" + total1);
}
}
}

using System;
namespace ClassSubmissionAssignment
{
public class Operations
{
public void methodOne(out int x, out int y, out int total)
{
  
x = 0;
y = 4;
total = x / y;
  
}
}
}

ons
M methodOne(out int x, out int y, out int total)
using System;
namespace ClassSubmissionAssignment
public class Operations
public void methodOne(out int x, out int y, out int total)
x = 0;
y = 4;
total = x / y;
%3D
%3D
Transcribed Image Text:ons M methodOne(out int x, out int y, out int total) using System; namespace ClassSubmissionAssignment public class Operations public void methodOne(out int x, out int y, out int total) x = 0; y = 4; total = x / y; %3D %3D
M Main(string) args)
using System;
namespace ClassSubmissionAssignment
class Program
static void Main(string[] args)
{
Console.WriteLine("Hiya, Please enter a number: ");
string numl = Console.ReadLine();
int Numl = Convert. ToInt32(num1);
int Num2; //Num2 is an integer datatype
int totall;//totall is an integer datatype
Operations Op0bj = new Operations ();//instantiating the class
Opobj.method0ne(out Num1, out Num2, out total1);
Console.WriteLine("Number we will be dividing by " + Num2);
Console.Writeline("The total of" + Numl + "/" + Num2+ "=" + total1);
Transcribed Image Text:M Main(string) args) using System; namespace ClassSubmissionAssignment class Program static void Main(string[] args) { Console.WriteLine("Hiya, Please enter a number: "); string numl = Console.ReadLine(); int Numl = Convert. ToInt32(num1); int Num2; //Num2 is an integer datatype int totall;//totall is an integer datatype Operations Op0bj = new Operations ();//instantiating the class Opobj.method0ne(out Num1, out Num2, out total1); Console.WriteLine("Number we will be dividing by " + Num2); Console.Writeline("The total of" + Numl + "/" + Num2+ "=" + total1);
Expert Solution
steps

Step by step

Solved in 4 steps with 1 images

Blurred answer
Knowledge Booster
Concept of pointer parameter
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning