cout<<"Please enter a letter: ";
cin>>letter;
cout<<"Please enter a number: ";
cin>>no;
cout<<"\n\nDo you want to enter again? Y-Yes N-No: ";
cin>>yon;
cout<<"\n\n";
if (yon=='y')
input();
else
cout<<letter <<no<<"\n";
}
main ()
{
input();
}
i was supposed to output all inputed inputs at the same time..
if the user choose to input 3x or more.. all her input will be outputed to. not the only last but ALL.