Introduction
Here is the source code for Main.java
Source
//package com.java2s;
public class Main {
public static boolean isNumeric(String str) {
for (int i = str.length(); --i >= 0;) {
if (!Character.isDigit(str.charAt(i))) {
return false;
}
}
return true;
}
}