🔒 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
  • 349
    Views
  • 4
    Participants
Last reply from:
MenofUnderstanding

Online now

Members online
483
Guests online
963
Total visitors
1,446

Forum statistics

Threads
2,275,073
Posts
28,960,460
Members
1,233,570
Latest member
101101
Back
Top