Witam mam problem z dodawaniem liczb w c# niby dodaje ale nie to co trzeba, tak jakby pobierał w ogóle inne liczby ;v
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApp4
{
class Program
{
static void Main(string[] args)
{
Console.Write("Wpisz liczbę 1: ");
int a = Convert.ToInt32(Console.Read());
Console.WriteLine(a);
Console.ReadLine();
Console.Write("Wpisz liczbę 2: ");
int b = Convert.ToInt32(Console.Read());
Console.WriteLine(b);
Console.ReadLine();
Calc calc = new Calc();
Console.WriteLine("Wynik dodawania to: "+calc.Dodawanie(a, b));
Console.ReadLine();
}
}
}
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApp4
{
class Calc
{
public int Dodawanie(int a, int b)
{
return (a + b);
}
public int Odejmowanie(int a, int b)
{
return (a - b);
}
}
}