درويش نشر 10 مارس 2019 أرسل تقرير نشر 10 مارس 2019 المطلوب إنشاء مشروعا برمجيا باستخدام السي شارب يقرا المستخدم المقاس (UK) ويحوله إلى مايقابله(France) أو (Italy) حسب اختيار المستخدم اقتباس
0 Entesar Khaled نشر 10 مارس 2019 أرسل تقرير نشر 10 مارس 2019 أهلا بك، يمكنك فعل ذلك من خلال البرنامج البسيط التالي using System; public class Program { public static void Main() { Console.WriteLine("Type the UK: "); int UK = int.Parse(Console.ReadLine()); Console.WriteLine("Enter 1 to change the UK into France_size or Enter 2 to change the UK into Italy_size "); int choise = int.Parse(Console.ReadLine()); int result=0; if(choise!=1 && choise!=2) Console.WriteLine("you allow to choose between 1 and 2 only!!"); if(choise==1) result=UK+26; if(choise==2) result=UK+30; Console.WriteLine(result); } } بالتوفيق.. اقتباس
السؤال
درويش
المطلوب إنشاء مشروعا برمجيا باستخدام السي شارب يقرا المستخدم المقاس (UK) ويحوله إلى مايقابله(France) أو (Italy) حسب اختيار المستخدم
1 جواب على هذا السؤال
Recommended Posts
انضم إلى النقاش
يمكنك أن تنشر الآن وتسجل لاحقًا. إذا كان لديك حساب، فسجل الدخول الآن لتنشر باسم حسابك.