Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


I want to single value if you give any integer value. Below are examples 
1. Input: 123  Output: 6
2. Input: 99   9+9=18   1+8  Output: 9
How to get above output?



I want to single value if you give any integer value. Below are examples  1. Input: 123  Ou..

Answer / vamshireddy

console.writeline("enter ur number");
int i=int.parse(console.readline);
int add=0;
int rem=0;
while(i!=0);
{
rem=i%10;
add=add+rem;
i=i/10;
}
console.writeline("result is"+add);
console.readline();

Is This Answer Correct ?    5 Yes 0 No

Post New Answer

More C Sharp Interview Questions

List down the differences between “dispose” and “finalize” methods in c#.

0 Answers  


What's the difference between class and object?

0 Answers  


What's the difference between abstraction and encapsulation?

0 Answers  


Is string a data type in c#?

0 Answers  


What is difference between asp net and c# net?

0 Answers  


Explain the difference between object type and dynamic type variables in c#?

0 Answers  


why C# called C#

3 Answers  


How do you achieve polymorphism in c#?

0 Answers  


What is the main purpose of linq?

0 Answers  


Explain constructor?

6 Answers   Wipro,


How can we insert 100 records @ a time without using for loop into the databse

10 Answers   IBM,


What does m mean in decimal c#?

0 Answers  


Categories