码迷,mamicode.com
首页 > 其他好文 > 详细

根据输入的水的夸脱数显示出这么多水中包含多少个水分子。

时间:2015-11-05 16:57:00      阅读:222      评论:0      收藏:0      [点我收藏+]

标签: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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!