Mọi người ơi mình viết code nhập năm sinh rồi tính tuổi, nhưng nó bị lỗi: redefinition of formal parameter ‘tuoi’
#include<stdio.h>
#include<conio.h>
void nhap(int &nam);
int tinh( int tuoi, int nam);
void xuat(int tuoi);
void main ()
{
int tuoi, nam;
nhap( nam);
tinh( tuoi, nam);
xuat(tuoi);
getch();
}
void nhap( int &nam)
{
printf(" nhap nam sinh cua ban.\n");
scanf(" %d",&nam);
}
int tinh( int tuoi, int nam)
{
int tuoi= 2017-nam; //bị lỗi ngay đây//
return(tuoi);
}
void xuat( int tuoi)
{
printf("tuoi cua ban la %d.\n",tuoi);
}