题目:
编写一个程序,要求用户输入全球当前的人口和美国当前的人口(或其他国家的人口)。将这些信息存储在long long变量中,并让程序显示美国(或其他国家)的人口占全球人口的百分比。
源代码:
#include <iostream>
int main()
{
using namespace std;
long long global_population, chinese_population; //用long转不下
cout << "请输入全球人口数和中国人口数(个为单位): ";
cin >> global_population >> chinese_population;
cout.setf(ios_base::fixed, ios_base::floatfield); //使下面的输出以书写浮点数表示
cout << "中国人口占全球人口的: " << double(chinese_population) / double(global_population) * 100 << "%";
return 0;
}
演示效果:
标签:11,global,cout,chinese,练习,long,人口,C++,population From: https://blog.csdn.net/little_startoo/article/details/140917675