Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,914 questions

51,847 answers

573 users

How to calculate generic root of a number in C#

2 Answers

0 votes
using System;

class Program
{
    static void Main() {
        long num = 12345, sum = 0, remainder;
  
        while(num > 10) {
            sum = 0;
            Console.Write("sum digits of {0} = " , num);
            while(num != 0) {
                remainder = num % 10;
                num = num / 10;
                sum += remainder;
            }
            Console.Write("{0}\n", sum);
            if(sum > 10)
                num = sum;
            else
                break;
        }
        Console.Write("generic root = {0}", sum);
    }
}




/*
run:
     
sum digits of 12345 = 15
sum digits of 15 = 6
generic root = 6
     
*/

 



answered Oct 10, 2021 by avibootz
0 votes
using System;

class Program
{
    static void Main() {
        long num = 12345;
  
        long generic_root = 1 + ((num - 1) % 9);
        
        Console.Write("generic root = {0}", generic_root);
    }
}




/*
run:
     
generic root = 6
     
*/

 



answered Oct 10, 2021 by avibootz

Related questions

1 answer 165 views
2 answers 145 views
2 answers 166 views
2 answers 335 views
2 answers 204 views
3 answers 161 views
3 answers 194 views
...