Parsi Coders
سورس کد تبدیل مگابایت به کیلوبایت (سی) - نسخه قابل چاپ

+- Parsi Coders (http://parsicoders.com)
+-- انجمن: Software Development Programming (http://parsicoders.com/forumdisplay.php?fid=37)
+--- انجمن: C and C++ (http://parsicoders.com/forumdisplay.php?fid=54)
+--- موضوع: سورس کد تبدیل مگابایت به کیلوبایت (سی) (/showthread.php?tid=2434)



سورس کد تبدیل مگابایت به کیلوبایت (سی) - Amin_Mansouri - 06-16-2012

در سورس زیر که با زبان سی نوشته شده است میتونید کیلوبایت رو به مگابایت تبدیل کنید.
english:
Convert MB to KB
کد:
Convert MB to KB#include <stdio.h>
int main(void)
{
double megabytes , kilobytes;
printf("Please enter the amount of megabytes to convert.\n");
scanf("%Lf",&megabytes);
/*convert megabytes to kilobytes*/
kilobytes = megabytes * 1024;
/*convert kilobytes to megabytes*/
/*this is for kilobytes to megabytes*/
/*megabytes = kilobytes / 1024*/
printf("There are %Lf kilobytes in %Lf megabytes.\n",kilobytes,megabytes);return 0;
}