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 supports the standard arithmetic operators: (Addition, Subtraction, Multiplication, Division,Remainder)
GO language program with example of Sort Functions for integer, strings and float64 data type
How to use struct that is imported from another package?
GO language program with example of Array Reverse Sort Functions for integer and strings
Program in Go language to Calculate Average Using Arrays
GO Program to Check Armstrong Number