Hackerrank - Java Solution - Java Int to String Solution
Problem Link - Java Int to String
Level - Introduction Challenges
Java Only Submit Part Code
String s = "" + n;
Java Full Source Code
import java.util.*;
import java.security.*;
public class Solution {
public static void main(String[] args) {
DoNotTerminate.forbidExit();
try {
Scanner in = new Scanner(System.in);
int n = in .nextInt();
in.close();
/* Here are 3 ways to convert an int to a String */
// String s = String.valueOf(n);
// String s = Integer.toString(n);
String s = "" + n;
if (n == Integer.parseInt(s)) {
System.out.println("Good job");
} else {
System.out.println("Wrong answer.");
}
} catch (DoNotTerminate.ExitTrappedException e) {
System.out.println("Unsuccessful Termination!!");
}
}
}
// The following class will prevent you from terminating the code using exit(0)!
class DoNotTerminate {
public static class ExitTrappedException extends SecurityException {
private static final long serialVersionUID = 1;
}
public static void forbidExit() {
final SecurityManager securityManager = new SecurityManager() {
@Override
public void checkPermission(Permission permission) {
if (permission.getName().contains("exitVM")) {
throw new ExitTrappedException();
}
}
};
System.setSecurityManager(securityManager);
}
}
Tags: HackerRank Online Judge Solution, HackerRank OJ Solution list, HackerRank Problems Solution, HackerRank solver, HackerRank all problem solution list, HackerRank solution in java, Hackerrank Java Solution, Hackerrank - Java Solution - Java Int to String Solution, Hackerrank Online Judge Solution, Hackerrank - Java Solutions,
Hi, I made a video with my solution to this problem and my process of solving it. Please leave suggestions in the comments on how I can improve my answer.
ReplyDeletehttps://www.youtube.com/watch?v=Jb4CBjDqwho