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.
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.
+ 1
Can you share your code?
Read this to help:
https://sololearn.com/compiler-playground/Wek0V1MyIR2r/?ref=app
0
Yes I will post one sec
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}");
}
}
0
Hlo