Ejemplo n.º 1
0
        /// <summary>
        /// Ham nhap 2 so nguyen
        /// </summary>
        static void Input(ref Integer integer1, ref Integer integer2)
        {
            char c;

            c = (char)Console.Read();

            //Nhap so nguyen thu 1: Nhap phan tu tu ban phim cho den khi gap phim Space
            while (c != 32)
            {
                integer1.Input(c);
                c = (char)Console.Read();
            };

            c = (char)Console.Read();

            //Nhap so nguyen thu 2: Nhap phan tu tu ban phim cho den khi gap phim Enter
            while (c != 13)
            {
                integer2.Input(c);
                c = (char)Console.Read();
            };
        }