Advertisement
Serby__

5

Sep 15th, 2019
169
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.46 KB | None | 0 0
  1. using System;
  2.  
  3. namespace ConsoleApp1
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             Console.Write("a =");
  10.             float a = float.Parse(Console.ReadLine());
  11.             Console.Write("b =");
  12.             float b = float.Parse(Console.ReadLine());
  13.             float k = a/b;
  14.             Console.Write(a+"/"+b+"=");
  15.             Console.Write("{0:#.###}", k);
  16.             Console.ReadLine();
  17.         }
  18.     }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement