// 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();
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();
تعليقات
إرسال تعليق