Guten Tag Community,
wie kann ich das Ergebnis dieser Aufgabe in eine Kommazahl umwandeln ?
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void rechnen(int number)
{
int Ergebnis = 0, Zahl1 = 0, Zahl2 = 0;
try
{
Zahl1 = Convert.ToInt32(textBox1.Text);
Zahl2 = Convert.ToInt32(textBox2.Text);
if (number == 1)
{
Ergebnis = Zahl1 + Zahl2;
label1.Text = "+";
}
if (number == 2)
{
Ergebnis = Zahl1 - Zahl2;
label1.Text = "-";
}
if (number == 3)
{
Ergebnis = Zahl1 * Zahl2;
label1.Text = "*";
}
if (number == 4)
{
Ergebnis = Zahl1 / Zahl2;
label1.Text = "/";
}
textBox3.Text = Ergebnis.ToString();
}
catch { MessageBox.Show("Fehler: Nur Zahlen sind zugelassen!","Fehler",MessageBoxButtons.OK, MessageBoxIcon.Error); }
}
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void rechnen(int number)
{
int Ergebnis = 0, Zahl1 = 0, Zahl2 = 0;
try
{
Zahl1 = Convert.ToInt32(textBox1.Text);
Zahl2 = Convert.ToInt32(textBox2.Text);
if (number == 1)
{
Ergebnis = Zahl1 + Zahl2;
label1.Text = "+";
}
if (number == 2)
{
Ergebnis = Zahl1 - Zahl2;
label1.Text = "-";
}
if (number == 3)
{
Ergebnis = Zahl1 * Zahl2;
label1.Text = "*";
}
if (number == 4)
{
Ergebnis = Zahl1 / Zahl2;
label1.Text = "/";
}
textBox3.Text = Ergebnis.ToString();
}
catch { MessageBox.Show("Fehler: Nur Zahlen sind zugelassen!","Fehler",MessageBoxButtons.OK, MessageBoxIcon.Error); }
}
private void button4_Click(object sender, EventArgs e)
{
rechnen(3);
}
{
rechnen(3);
}
private void button2_Click(object sender, EventArgs e)
{
rechnen(1);
}
{
rechnen(1);
}
private void button3_Click(object sender, EventArgs e)
{
rechnen(2);
}
{
rechnen(2);
}
private void button5_Click(object sender, EventArgs e)
{
rechnen(4);
}
}
}
{
rechnen(4);
}
}
}
Ich hoffe jemand kann mir helfen
MfG
Master