There's a lot of room for error there in that not every year has 365 days, and not every month has 30 days!
You might get more accurate results if you convert your dates to epoch time, do the math with those numbers, and then convert the result back to something easier to read. Here's a starting point:
Code:
# Current time/date in seconds...
date +%s
1299275974
# Midnight on Jan 1st, 2000
date -d "01/01/2000" +%s
946706400
# Then we can subtract those numbers, and convert
# the result to days (if that's what you're looking for)
current=$(date +%s)
century=$(date -d "01/01/2000 00:00:00" +%s)
days_this_century=$((($current-$century)/60/60/24))
echo $days_this_century
Disclaimer: not a lot of thought went into this demonstration, so I can vouch for the accuracy, but I think it's close, and should get you going in the right direction!
Hope this helps!
-Jeo