We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
Day 16: Exceptions - String to Integer
Day 16: Exceptions - String to Integer
Sort by
recency
|
1004 Discussions
|
Please Login in order to post a comment
S = input().strip() try: print(int(S)) except ValueError: print("Bad String")
HOW CAN I RECOVER A STOLEN BTC/USDT/ETH? HIRE FIXER WALLET RETRIEVAL Never took much time for me to be able to recover a stolen bitcoin worth of $124k. Reaching out to FIXER WALLET RETRIEVAL, one of the trusted and reputable hackers out here can save you the energy of becoming a stranded victim of crypto fraud. Here is how to contact these hackers; Email fixerwalletretrieval@fixer.co.site
Python 3 solution ** For the code to run remove the if main**
S = input().strip()
try: value = int(S) print(value) except ValueErr or: print("Bad String")
I did not know this is so simple
int main() { string S;
}
for code java public class Solution { public static void main(String[] args) { Scanner sc = new Scanner(System.in); String S = sc.nextLine(); try{ int num = Integer.parseInt(S);
System.out.println(num); }catch(Exception e){ System.out.println("Bad String"); }
}