Is there any advantage in using int instead of float when the number you want to store isn’t a decimal number?
eg.
int number = 10;
float number = 10;
Why would I want to use an int instead of a float here?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Yes, there are lots of advantages.
ints is much faster.ints will never suffer from precision loss.