/*3-6.1 个水分子的质量约为 3.0×10^-23g,l 夸脱水大约有 950g。编写一个程序,要求输入水的夸脱数,然后显示这么多水中包含多少个水分子。*/
#include <stdio.h>
int main()
{
float a;
printf("Please input quarts:");
scanf("%f", &a);
printf("%emolecules\n", a * 950/3E-23);
system("pause");
return 0;
}