I'm learning C++ and I want to make clean and readable code. I was wondering which way is better? (this is supposed to make the factorial of 9)
First Method:
int main(){
int i = 1,r = i;
while (i < 10) {
r *= ++i;
}
}
Second Method:
int main(){
int i = 1,r = i;
while (i < 10) {
i++;
r *= i
}
}
The first may be harder to understand but it's one less line. Is it worth it? What about performance? Obviously it wouldn't matter in such a trivial example but it would be a good practice to make fast code from the beginning.
r *= inotr* = i!. – KennyTM Jun 10 '10 at 18:55