https://github.com/rededge967/kb-converter
a simple C# program to convert Kilobytes to bytes and bits.
https://github.com/rededge967/kb-converter
bits bytes csharp kilobytes
Last synced: 4 months ago
JSON representation
a simple C# program to convert Kilobytes to bytes and bits.
- Host: GitHub
- URL: https://github.com/rededge967/kb-converter
- Owner: RedEdge967
- Created: 2021-12-05T16:01:47.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-12-05T16:07:45.000Z (over 4 years ago)
- Last Synced: 2025-01-19T12:52:14.407Z (over 1 year ago)
- Topics: bits, bytes, csharp, kilobytes
- Language: C#
- Homepage:
- Size: 1.95 KB
- Stars: 2
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 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.
```csharp
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");
}
}
```