
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Find Smallest Divisor of an Integer in Go
Consider that the integer is: 75
Divisor of that integer is: 3, 5, 15, ..., 75
The smallest divisor is: 3
Steps
- Take an integer from the user.
- Initialize a variable (res) with that number.
- Use a for loop where the value of i ranges from 2 to the integer.
- If the number is divisible by i, compare with res. If res > i, then update res with i.
- Exit from the loop and print res.
Example
package main import "fmt" func main(){ var n int fmt.Print("Enter the number: ") fmt.Scanf("%d", &n) res := n for i:=2; i<=n; i++{ if n%i == 0{ if i<=res{ res=i } } } fmt.Printf("The smallest divisor of the number is: %d", res) }
Output
Enter the number: 75 The smallest divisor of the number is: 3
Advertisements