标签:c
1个水分子的质量约为3.0×10-23g,1夸脱水大约有950g。请编写一个程序,要求能根请编写一个程序,要求能根据输入的水的夸脱数显示出这么多水中包含多少个水分子。
#include <stdio.h>
#include <stdlib.h>
int main()
{
float n = 0;
scanf("%f", &n);
n = (n * 950) / (3.0*1e-23);
printf("%e", n);
system("pause");
return 0;
}
标签:c
原文地址:http://zhaoguanwen.blog.51cto.com/10824932/1709834