Spocoman

10. Multiply by 2

Nov 19th, 2021 (edited)
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.55 KB | None | 0 0
  1. using System;
  2.  
  3. namespace MultiplyBy2
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             double spox = 0;
  10.             spox: double num = double.Parse(Console.ReadLine());
  11.            
  12.             if (num >= 0)
  13.             {
  14.                 spox = num;
  15.                
  16.                 Console.WriteLine($"Result: {num * 2:F2}");
  17.                 goto spox;
  18.             }
  19.             else
  20.             {
  21.                 Console.WriteLine("Negative number!");
  22.             }
  23.          
  24.         }    
  25.     }
  26. }
Add Comment
Please, Sign In to add comment