hmmm let's see my numbers:
dates: 0
me ask them: 0
them ask me: 0
times dumped: 0
times dumping them: 0
time for dating: 0
interest in dating: 0
so let's see my total dates:times being dumped
0/0
int dates;
int dumps;
int date_ratio;
cin >> dates;
cin >> dumps;
if (dumps != 0)
{
date_ratio = dates/dumps*100
}
if (date_ratio < 0)
{
cout << "calculation error";
}
if (date_ratio > 0)
{
cout << "dating success of ";
cout << date_ratio;
cout << " %"
}
return 0
sorry about all that jiberish......i gotta do that at least once a month before i forget C (it's probably wrong anyway

)