0

Simple calculator using c#

I am not understanding how to input the code I have reviewed the question ion over 10 times and have done research online on stack overflow. But can’t seem to get a clear answer.

1st Apr 2025, 6:21 PM
Ricardo Uriostegui
5 Answers
+ 2
Ricardo Uriostegui , your code is correct. i suppose that you have trouble with the input for your code. sololearn playground requires all input values before the code is executed. when starting the program, an input window will pop up. > enter each value in a separate line. > finally click the submit button.
2nd Apr 2025, 5:38 AM
Lothar
Lothar - avatar
+ 1
Can you share your code? Read this to help: https://sololearn.com/compiler-playground/Wek0V1MyIR2r/?ref=app
1st Apr 2025, 6:54 PM
Ausgrindtube
Ausgrindtube - avatar
0
Yes I will post one sec
1st Apr 2025, 7:33 PM
Ricardo Uriostegui
0
using System; public class Program { public static void Main(string[] args) { int number1 = Convert.ToInt32(Console.ReadLine()); int number2 = Convert.ToInt32(Console.ReadLine()); //your code goes here int result = number1 + number2; Console.WriteLine($"{number1}+{number2}={result}"); } }
1st Apr 2025, 7:42 PM
Ricardo Uriostegui
0
Hlo
2nd Apr 2025, 12:21 PM
Nischal Khatiwada
Nischal Khatiwada - avatar