编程学习网为您整理以下代码实例,主要实现:计算木星和太阳之间的光年,希望可以帮到各位朋友。
#include <stdio.h>
int main()
{
float lightyear=5.878E12;
float jupiter=483400000;
float distance;
distance=jupiter/lightyear;
printf("Jupiter is %f light years from the sun.\n",distance);
return(0);
}
本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!