21 Aralık 2013 Cumartesi

C # PROGRAMI İLE ÖRNEK SORULAR-40

(onaltılık yapılar)
using System;
using System.Collections.Generic;
using System.Text;

namespace onaltılıkCA
{
    class Program
    {
        static void Main(string[] args)
        {
            int c, d;
            c = 0xab1;
            d = 0xe11;
            Console.WriteLine("\n c={0}",c);
            Console.WriteLine("\n d={0}", d);
            Console.ReadLine();
        }
    }
}
Cevap)c=2737,d=3601


Hiç yorum yok: