21 Aralık 2013 Cumartesi

C # PROGRAMI İLE ÖRNEK SORULAR-41

(onaltılık örnek)
using System;
using System.Collections.Generic;
using System.Text;

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

Hiç yorum yok: