using System;
using System.Collections.Generic;
using System.Text;
namespace Oktalsystem
{
class Program
{
static void Main(string[] args)
{
string modulo = "";
int zahl;
int rest;
string ausgabe = "";
Console.WriteLine("t Umrechner von Zahlen im Dezimalsystem in des Oktalsystemn");
Console.Write("Geben sie bitte eine beliebige Zahl ein (im Dezimalsystem): ");
zahl = Convert.ToInt32(Console.ReadLine());
rest = zahl;
while (rest > 0)
{
modulo = Convert.ToString(rest % 8);
rest = (rest / 8);
ausgabe = (modulo + ausgabe);
}
if (modulo=="")
ausgabe="0";
Console.Write("Die Dezimalzahl " + zahl + " ist im Oktalsystem: "); Console.Write(ausgabe);
Console.Read();
}
}
|