需要帮忙。错误的输出。从 2013 年开始到 2017 年的值相同 = 4400。我需要帮助如何集成从 2013 年开始每年输出值都不同的程序。需要有人在那里,可以指导我一点点可以纠正程序.
#include <stdio.h>
#include <conio.h>
#include <math.h>
main()
{
int Year;
int inipop, projpop;
int growth, sum;
printf("\n Please enter number of initial population: ");
scanf("%d",&inipop);
printf("\n Please enter the projected of population: ");
scanf("%d",&projpop);
printf("\nThe increase Year of Population: \n");
for(Year = 2013; Year <2018; Year++)
{
growth = inipop + projpop;
printf("%d %d\n",Year,growth*2);
}
getch();
return 0;
}
输出:
请输入初始人口数:2000
请输入预计人口:200
人口增长年份:2013 4400 2014 4400 2015 4400 2016 4400 2017 4400