fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. // your code goes here
  8.  
  9. Console.WriteLine("أدخل طول ضلع المربع: ");
  10. double side = Convert.ToDouble(Console.ReadLine());
  11.  
  12. double area = side * side;
  13.  
  14. Console.WriteLine("مساحة المربع هي: " + area);
  15.  
  16.  
  17. }
  18. }
  19.  
Success #stdin #stdout 0.04s 30400KB
stdin
Standard input is empty
stdout
أدخل طول ضلع المربع: 
مساحة المربع هي: 0