| Лимит времени 2000/4000/4000/4000 мс. Лимит памяти 65000/65000/65000/65000 Кб. Prepared by Halil Karimis.
 
 
 Population Bar Chart
 
Question: Write a program that produces a bar chart 
showing the population growth of
Prairieville, a small town in the Midwest, at
50-year intervals during the past 100 years.
 
The program will get the population for the years
1900, 1950, and 2000 from the user. For each
year, it should display the year and a bar
consisting of one asterisk for each 1,000
people.
 
Input specification  You will be given three integers in three lines
representing the population (p) in the years
1900, 1950 and 2000 where 0 < p < 10000
 Output specification  Print out three lines. Every line will
contain the year followed by a  space and 
proper number of asterisks.
 Note: The population is
rounded to the nearest 1,000 people.
  | Sample Run I    
 
28004560
 6220
 
 Sample Output I   
 
1900 ***1950 *****
 2000 ******
 
 | 
Sample Input II    
 
57003200
 4500
 
 
Sample Output II   
 
1900 ****** 1950 ***
 2000 *****
 
 |  Для отправки решений необходимо выполнить вход.
 
 
 |