Advertisement
Ron_Kadouri

Untitled

Sep 18th, 2019
495
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. using System;
  2. namespace This_Program_Is_Being_Maded_By_Ron_Kadouri
  3. {
  4. class Program
  5. {
  6. static void Main(string[] args)
  7. {
  8.  
  9. float x1;
  10. double sum;
  11.  
  12.  
  13. Console.WriteLine("Please ente your degrees in fahrenheit");
  14.  
  15. x1 = float.Parse(Console.ReadLine());
  16.  
  17. sum = x1 / 33.8;
  18.  
  19. Console.WriteLine("your degrees in celsius is : " + sum);
  20.  
  21. Console.ReadLine();
  22.  
  23. }
  24. }
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement