Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
0 Endorsements
~219 People Reached
Favorite Forums
Member Avatar for amitchawla

using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplication1 { class CalculateNumber { int Number1, Number2; char option; int Result; public void Number() { Console.WriteLine("Enter the First number"); Number1 = Convert.ToInt32(Console.ReadLine()); Console.WriteLine("Enter the second number"); Number2 = Convert.ToInt32(Console.ReadLine()); Console.WriteLine("Main Menu"); Console.WriteLine("1.Addition"); Console.WriteLine("2.Subtraction"); Console.WriteLine("3.Multiplication"); Console.WriteLine("4.Division"); Console.WriteLine("Enter the Operation you want …

Member Avatar for rohand
0
122
Member Avatar for amitchawla

// HELP ME OUT I M DEVELOPING A CALCULATOR WHICH CAN BE USED AGAIN AND AGAIN OVER NUMBER OF TIMES FOLLOWING IS THE CODING I'VE DONE PLZ INTIMATE THE MISTAKE AND HOW TO CORRECT using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplication1 { class CalculateNumber { int Number1, …

Member Avatar for mshauny
-1
97