Skip to content
Xiith
  • Home
  • C
  • C++
  • C#
  • Java
  • Python
  • Kotlin
  • R
  • Go
  • JavaScript
  • About us
Search for:
Menu Close
  • Home
  • C
  • C++
  • C#
  • Java
  • Python
  • Kotlin
  • R
  • Go
  • JavaScript
  • About us

Go Program to find quotient and remainder

In this program, you will learn how to find quotient and remainder in Go. var a,b,r,q int fmt.Scan(&a, &b) Example: How to find quotient and remainder in Go package main…

Continue Reading Go Program to find quotient and remainder

Go Program to print table of any number

In this program, you will learn how to print a table of any number in Go. for i := 1; i <= 10; i++ { //statement } Example: How to…

Continue Reading Go Program to print table of any number

Go Program to find the largest of three numbers using nested if

In this program, you will learn how to find the largest of three numbers using nested if statement in Go. 10 20 30 => 30 10 20 12 => 20…

Continue Reading Go Program to find the largest of three numbers using nested if

Go Program to find the largest number among three numbers

In this program, you will learn how to find the largest number among the three numbers in Go. 10 20 30 => 30 10 20 12 => 20 Example: How…

Continue Reading Go Program to find the largest number among three numbers

Go Program to print even numbers between 1 to 100

In this program, you will learn how to print even numbers between 1 to 100 in Go. if i % 2 == 0 { //statement } Example: How to print…

Continue Reading Go Program to print even numbers between 1 to 100

Go Program to check a number is even or odd

In this program, you will learn how to check a number is even or odd in Go. if num % 2 == 0 { //statement } Example: How to check…

Continue Reading Go Program to check a number is even or odd

Go Program to check the age of a user is eligible for voting or not

In this program, you will learn how to check the age of a user who is eligible for voting or not in Go. if age >= 18 { //statement }…

Continue Reading Go Program to check the age of a user is eligible for voting or not

Go Program to find the square root of a number

In this program, you will learn how to find the square root of a number in Go. import "math" result := math.Sqrt(num) Example: How to find the square root of…

Continue Reading Go Program to find the square root of a number

Go Program to initialize more than one variable at a time

In this program, you will learn how to initialize more than one variable at a time in Go. x, y := 10, 30 var x, y int = 10, 30…

Continue Reading Go Program to initialize more than one variable at a time

Go Program to find the sum of two numbers using Scan()

In this program, you will learn how to find the sum of two numbers using a Scan() function in Go. 20 = 10 + 10 30 = 10 + 20…

Continue Reading Go Program to find the sum of two numbers using Scan()
  • Go to the previous page
  • 1
  • 2

Recent Posts

  • JavaScript Program to find quotient without using the division operator
  • JavaScript Program to find quotient and remainder
  • JavaScript Program to print table of any number
  • JavaScript Program to find the largest of three characters
  • JavaScript Program to find the largest of three numbers using nested if
Xiith is created for educational, experimental, and schooling purpose. Examples on Xiith are made easier to make a better or basic understanding. Tutorials, testimonials, and examples are continuously checked to avoid delusion, but we cannot take complete responsibility of all programs on Xiith. When you are operating this site, you have to agree to read and accept our terms of use, cookie and privacy policy. Copyright © 2020 by Xiith. All Rights Reserved. About us.