新手,为什么最后结果总是随机数字
#include<stdio.h>int main()
{
int 月份,日期,年份,岁数;
printf("please input your birthday year:\n");
scanf_s("%d",&年份);
printf("mouth:\n");
scanf_s("%d", &月份);
printf("date:\n");
scanf_s("%d", &日期);
岁数 = 2017 - 年份;
if (月份 >= 9) {
if (日期 > 19) {
岁数 = 2016 - 年份;
}
}
printf("you are %d\n", &岁数);
return 0;
}