Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,845 questions

51,766 answers

573 users

How to use bitwise XOR in Go

1 Answer

0 votes
/*
  
X Y | X ^ Y
0 0 |   0
0 1 |   1
1 0 |   1
1 1 |   0
  
*/

package main

import (
    "fmt"
)

func main() {
    var x, y int

    x, y = 5, 5
    fmt.Printf("%08b\n", x)
    fmt.Println("^")
    fmt.Printf("%08b\n", y)
    fmt.Println("=")
    fmt.Printf("%08b\n", x ^ y)
    fmt.Println("\n")

    x, y = 7, 0
    fmt.Printf("%08b\n", x)
    fmt.Println("^")
    fmt.Printf("%08b\n", y)
    fmt.Println("=")
    fmt.Printf("%08b\n", x ^ y)
    fmt.Println("\n")

    x, y = 0, 6
    fmt.Printf("%08b\n", x)
    fmt.Println("^")
    fmt.Printf("%08b\n", y)
    fmt.Println("=")
    fmt.Printf("%08b\n", x ^ y)
    fmt.Println("\n")

    x, y = 0, 0
    fmt.Printf("%08b\n", x)
    fmt.Println("^")
    fmt.Printf("%08b\n", y)
    fmt.Println("=")
    fmt.Printf("%08b\n", x ^ y)
    fmt.Println("\n")
}



/*
run:

00000101
^
00000101
=
00000000


00000111
^
00000000
=
00000111


00000000
^
00000110
=
00000110


00000000
^
00000000
=
00000000

*/

 



answered Jul 11, 2025 by avibootz
edited Jul 11, 2025 by avibootz

Related questions

1 answer 73 views
73 views asked Jul 12, 2025 by avibootz
2 answers 88 views
88 views asked Jul 12, 2025 by avibootz
1 answer 70 views
1 answer 86 views
...