🔒 Closed Inverter without if statement

Status
Not open for further replies.

Princess Serrano

Honorary Poster
public class Main {

private int [] binary = {0,1};

private void invert(String input) {
String inverted = "";

for (char a : input.toCharArray()) {
inverted += binary[(Character.getNumericValue(a)+1) % 2];
}
System.out.println("Original: " + input + "\n" +
"Inverted: " + inverted);
}

public static void main(String... args) {
Main main = new Main();
main.invert("101010");
}
}


Skl. Hahaha
 
Status
Not open for further replies.

About this Thread

  • 3
    Replies
  • 370
    Views
  • 4
    Participants
Last reply from:
MenofUnderstanding

Trending Topics

Online now

Members online
396
Guests online
3,073
Total visitors
3,469

Forum statistics

Threads
2,330,554
Posts
29,254,989
Members
1,153,161
Latest member
zwaro
Back
Top