using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Collections;
namespace ByteCevir
{
class Program
{
/* Yazan: Ali Şirin TAŞÇİNTEN
* Amaç: 10'luk tabandan 2'lik tabana çevirme
* Türü : konsol uygulaması
*/
static void Main(string[] args)
{
int sayi;
ArrayList kalan = new ArrayList();
Console.Write("Bir sayı giriniz:");
sayi = Convert.ToInt32(Console.ReadLine());
while (sayi >= 2)
{
kalan.Add(sayi % 2);
sayi = sayi / 2;
}
kalan.Add(sayi);
kalan.Reverse();
for (int i = 0; i <= kalan.Count - 1; i++)
{
Console.Write(kalan[i].ToString());
}
Console.ReadKey();
}
}
}
Bu hazır kod'a ilk yorumu siz yapın!