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,907 questions

51,839 answers

573 users

How to check if a number is armstrong number or not in Go

1 Answer

0 votes
// An Armstrong number of three digits is an integer that the sum
// of the cubes of its digits is equal to the number itself

// 371 is an Armstrong number: 3**3 + 7**3 + 1**3 = 371

package main

import (
	"fmt"
)

func IsArmstrongNumber(n int) bool {
	reminder, sum := 0, 0
	tmp := n

	for n != 0 {
		reminder = n % 10
		n = n / 10
		sum += reminder * reminder * reminder
	}

	return sum == tmp
}

func main() {
	n := 371

	if IsArmstrongNumber(n) {
		fmt.Printf("%d is an Armstrong number\n", n)
	} else {
		fmt.Printf("%d is not an Armstrong number\n", n)
	}
}



/*
run:

371 is an Armstrong number

*/

 



answered Oct 10, 2024 by avibootz

Related questions

1 answer 75 views
1 answer 111 views
1 answer 194 views
1 answer 89 views
1 answer 83 views
1 answer 120 views
1 answer 204 views
...