GO Program to Swap Number Without Using Temporary Variables
In this program, user is asked to enter two numbers and program will swap two numbers without using third variable.
Example
package main
import "fmt"
func main(){
fmt.Print("Enter first number : ")
var first int
fmt.Scanln(&first)
fmt.Print("Enter second number : ")
var second int
fmt.Scanln(&second)
first = first-second
second = first+second
first = second-first
fmt.Println("First number :",first)
fmt.Println("Second number :",second)
}
Most Helpful This Week
GO Program to Check Whether a Number is Palindrome or Not
Program in Go language to Calculate Standard Deviation using Math package
GO supports the standard arithmetic operators: (Addition, Subtraction, Multiplication, Division,Remainder)
Program in Go language to Find Largest Element of an Array
GO Program to Check Armstrong Number
GO language program with example of Sort Functions for integer, strings and float64 data type