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#
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;
}
}
}
Step by step
Solved in 4 steps with 1 images