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 print full Pyramid using *
GO Program to Calculate Area of Rectangle and Square
GO language program with example of Sort Functions for integer, strings and float64 data type
GO supports the standard arithmetic operators: (Addition, Subtraction, Multiplication, Division,Remainder)
Program in Go language to Program to Add Two Matrix Using Multi-dimensional Arrays
GO language program with example of String Compare function