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

Trending Topics

Online now

Members online
924
Guests online
3,194
Total visitors
4,118

Forum statistics

Threads
2,330,576
Posts
29,255,255
Members
1,151,185
Latest member
hulka
Back
Top