Skip to content

a simple C# program to convert Kilobytes to bytes and bits.

Notifications You must be signed in to change notification settings

RedEdge967/kb-converter

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 

Repository files navigation

kb-converter

  • This is a simple C# program that can convert kilobytes to bytes and bits.

How to?

  • Download and run the kb-converter.cs
  • Or copy the following code and paste it in a online C# compiler and run it.
using System;  
class JTP  
{  
static long bits(int kilobytes)  
{  
    long Bits;  
    Bits = kilobytes * 8192;  
    return Bits;  
}  
static long bytes(int kilobytes)  
{  
    long Bytes;  
    Bytes = kilobytes * 1024;  
    return Bytes;  
}  
static public void Main ()  
{  
    int kilobytes;  
    Console.WriteLine("Enter the value of kilobytes: ");  
    kilobytes = Convert.ToInt32(Console.ReadLine());  
    Console.WriteLine ("There are " + bytes(kilobytes) + " Bytes in "+ kilobytes + " kilobytes");  
    Console.WriteLine ("There are " + bits(kilobytes) + " Bits in "+ kilobytes + " kilobytes");  
}  
} 

About

a simple C# program to convert Kilobytes to bytes and bits.

Topics

Resources

Stars

Watchers

Forks

Languages