Hallo,
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Projekt1
{
class Program
{
static void Main(string[] args)
{
Console.Write("Bitte geben Sie ihre erste Zahl ein: ");
int x;
x=Console.Read();
Console.Write("Ihre erste Zahl lautet" + x + ".");
Console.Write("Bitte geben Sie ihre zweite Zahl ein: ");
int y;
y=Console.Read();
Console.Write("Ihre zweite Zahl lautet" + y + ".");
Console.Write("Das Ergebnis lautet:" + x + y + ".");
}
}
}
Das ist mein Programm-Code bisher, aber meine Frage lautet wie folgt: Wie speicher ich einen Wert? In c++ ging das mit cout und cin, wie geht das in c#?
Hansi123 Gast |