Rishikesh Kumar Rishi has Published 1156 Articles

Golang Program to Count the Number of Digits in a Number

Rishikesh Kumar Rishi

Rishikesh Kumar Rishi

Updated on 31-Jul-2021 15:00:03

4K+ Views

Suppose the number is: 123456Count of digits in the given number is: 6To count the number of digits in a number, we can take followingStepsTake the value of the integer and store in a variable.Using a while loop, get each digit of the number and increment the count each time ... Read More

Golang Program to Find the Smallest Divisor of an Integer

Rishikesh Kumar Rishi

Rishikesh Kumar Rishi

Updated on 31-Jul-2021 14:58:53

381 Views

Consider that the integer is: 75Divisor of that integer is: 3, 5, 15, ..., 75The smallest divisor is: 3StepsTake 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, ... Read More

Golang Program to Print Odd Numbers Within a Given Range

Rishikesh Kumar Rishi

Rishikesh Kumar Rishi

Updated on 31-Jul-2021 14:54:30

432 Views

To print odd number in a range, we can take two inputs, a and b, for lower and upper limits.Examplea = 2 and b = 9Numbers between a and b are: 2, 3, 4, 5, 6, 7, 8, 9Odd numbers are: 3, 5, 7, 9StepsDefine two numbers, a and b.Take ... Read More

Golang Program to read the marks of subjects and display the Grade

Rishikesh Kumar Rishi

Rishikesh Kumar Rishi

Updated on 31-Jul-2021 14:32:34

567 Views

Let's enter the marks: 89 56 90 67 99Sum of the marks is: 89+56+90+67+99 => 401Avg. = 401/5 = 80.1The steps are as follows:Define variables for 5 subjects.Enter marks for 5 subjects.Find average of the marks to find grade.Use if else block to print grade.Example Live Demopackage main import "fmt" func ... Read More

Golang Program to Read a Number (n) and Compute (n+nn+nnn)

Rishikesh Kumar Rishi

Rishikesh Kumar Rishi

Updated on 31-Jul-2021 14:17:48

319 Views

Let's read a number, n=5Then, nn=55 and then nnn=555res = 5 + 55 + 555 => 615To read a number (n) and compute (n+nn+nnn), we can take the followingStepsDefine a variable, n.Print a statement to get the number, n.Take user input for variable, n.Make an expression for (n + nn ... Read More

Golang Program to Calculate the Average of Numbers in a Given List

Rishikesh Kumar Rishi

Rishikesh Kumar Rishi

Updated on 30-Jul-2021 15:41:19

1K+ Views

Input array is: [2, 4, 1, 6, 5]Sum = 2 + 4 + 1 + 6 + 5 => 18Average = 18/5 => 3.6 ~ 3To calculate the average of numbers in a given list, we can take following steps −Let's take an input list of numbers.Find the sum of ... Read More

Golang Program to create a Class that can perform basic Calculator Operations

Rishikesh Kumar Rishi

Rishikesh Kumar Rishi

Updated on 30-Jul-2021 15:38:15

1K+ Views

To create a class that can perform basic calculator operations, we can take following StepsWe can define a Calculator class with two numbers, a and b.Define a member method to calculate the addition of two numbers.Define a member method to calculate the multiplication of two numbers.Define a member method to ... Read More

Golang Program to Create a Class and Compute the Area and Perimeter of a Circle

Rishikesh Kumar Rishi

Rishikesh Kumar Rishi

Updated on 30-Jul-2021 15:25:58

477 Views

To compute the area and perimeter of a circle, we can take following steps −Define a struct with circle properties such as radius.Define a method to calculate the area of the circle.Define a method to calculate the perimeter of the circle.In the main method, take the user's input for circle's ... Read More

Golang Program to Find the Area of a Rectangle Using Classes

Rishikesh Kumar Rishi

Rishikesh Kumar Rishi

Updated on 30-Jul-2021 15:17:39

538 Views

To find the area of a rectangle using classes, we can take following StepsDefine a struct with rectangle properties such as breadth and length.Define a method to calculate the area of the rectangle.In the main method, instantiate an object of rectangle.Call the struct method, i.e., Area, to calculate the area ... Read More

Golang Program to Read the Contents of a File

Rishikesh Kumar Rishi

Rishikesh Kumar Rishi

Updated on 30-Jul-2021 09:44:00

1K+ Views

pre.prettyprint{width:99%!important;} a.demo{top:12px!important; float:right!important;}To read the contents of a file, we can take following steps −We can create a file called test.txt.Clean-up using defer statement.Write the contents of string.Call ReadFile() method to read the file.ReadFile reads the file named by filename and returns the contents.Print the content of the file.Example Live Demopackage ... Read More

Advertisements