Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- //Write a program that reads 3 numbers: an integer a (0 ≤ a ≤ 500), a floating-point b and a floating-point
- //c and prints them in 4 virtual columns on the console. Each column should have a width of 10 characters.
- //The number a should be printed in hexadecimal, left aligned; then the number a should be printed in binary
- //form, padded with zeroes, then the number b should be printed with 2 digits after the decimal point, right
- //aligned; the number c should be printed with 3 digits after the decimal point, left aligned.
- class FormattingNumbers
- {
- static void Main()
- {
- int a = int.Parse(Console.ReadLine());
- double b = double.Parse(Console.ReadLine());
- double c = double.Parse(Console.ReadLine());
- string myHex = a.ToString("X");
- string aBinary = Convert.ToString(a, 2).PadLeft(10, '0'); //binary of a
- Console.WriteLine("|{0,-10}|{1}|{2,10:F2}|{3,-10:F3}|", myHex, aBinary, b, c);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement