-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathReplaceZerosWithOnes_Q4.java
67 lines (54 loc) · 1.97 KB
/
ReplaceZerosWithOnes_Q4.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
/*
4. Program to replace all 0's with 1 in a given integer. Given an integer as an input, all the 0's in the number has to be replaced with 1.
For example, consider the following number Input: 102405
Output: 112415
Input: 56004
Output: 56114
Steps to replace all 0's with 1 in a given integer
• Input the integer from the user.
• Traverse the integer digit by digit.
• If a '0' is encountered, replace it by '1'.
• Print the integer.
*/
import java.util.Scanner;
public class ReplaceZerosWithOnes_Q4 {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
// Input the integer
System.out.print("Enter an integer: ");
int number = scanner.nextInt();
// Replace 0's with 1's
int result = replaceZerosWithOnes_Q4(number);
// Display the result
System.out.println("After replacing 0's with 1's: " + result);
scanner.close();
}
// Method to replace all 0's with 1's in a number
private static int replaceZerosWithOnes_Q4(int num) {
// If number is 0, return 1
if (num == 0) {
return 1;
}
// For handling negative numbers
boolean isNegative = false;
if (num < 0) {
isNegative = true;
num = -num;
}
// Convert to string for easier digit manipulation
String numStr = Integer.toString(num);
StringBuilder result = new StringBuilder();
// Replace each '0' with '1'
for (int i = 0; i < numStr.length(); i++) {
if (numStr.charAt(i) == '0') {
result.append('1');
} else {
result.append(numStr.charAt(i));
}
}
// Convert back to integer
int replacedNum = Integer.parseInt(result.toString());
// Return with original sign
return isNegative ? -replacedNum : replacedNum;
}
}