// naseem برنامج يظهر لنا باقي القسمة
            int a;
            int b;
            int c;
            Console.WriteLine("how much a");
            a = int.Parse(Console.ReadLine());
            Console.WriteLine("how much b");
            b = int.Parse(Console.ReadLine());

            c = a % b;
            Console.WriteLine("c is" + c);
            Console.ReadKey();

تعليقات

المشاركات الشائعة من هذه المدونة

تمرين 11 (استخدام شاشة ال lcd)