In this I will tell you how to do sum of five digit number . So, without any further delay let's get started .Like our previous post we here going to use all three loops in C .
Code:
Using for loop
Using while loop
Using do-while loop
Logic:
First we define Variable of type int that is number and we take input of five digit number from user in this . Then we define another variable of type int that is number1 and sum=0. we give sum as value zero. In number1 we assign value number%10 that means remainder remains after dividing five digit number with 10. And then we add it in sum variable . And Then we divide number by 10 in order to get quotient and store in same variable number .This happens five times and loop gets exit.
Output:
You can give different input to this program and check by yourself. And please try by yourself .
I hope that you find this helpful in you work .
Thanks for reading .
No comments:
Post a Comment