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 Rust

1 Answer

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

fn print_bits(label: &str, n: u8) {
    println!("{:08b} {}", n, label);
}

fn main() {
    let cases = [(5, 5), (7, 0), (0, 6), (0, 0)];

    for (x, y) in cases {
        print_bits("", x);
        println!("^");
        print_bits("", y);
        println!("=");
        print_bits("", x ^ y);
        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

...