HEy:)
Buddies in early morning i want to calculate that exchange during download & you very well known that it is shown in byte so just i am g with c++ and play a game for writing this.
thanks
enjoy it.
It's very easy and handy with simple logic.
Byte to KILOBYTE conversion in c++
#include <iostream>
#include <cmath>
using namespace std;
int main()
{
long double byte;
long double kilobyte;
long double megabyte;
long double gigabyte;
cout << "Enter the byte value";
cin>>byte;
kilobyte = byte / 1024;
megabyte = kilobyte / 1024;
gigabyte = megabyte / 1024;
cout << byte << " Equal to " << kilobyte << " Kilobyte's "<<"\n";
cout << byte << " Equal to " << megabyte << " Megabyte's "<<"\n";
cout << byte << " Equal to " << gigabyte << " Gigabyte's "<<"\n";
system("pause");
return 0;
}
nirveshverma -1 Light Poster
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.