Skip to content
Snippets Groups Projects
Commit a1967e6e authored by iliya's avatar iliya
Browse files

fatigué

parent 1fa69c16
No related branches found
No related tags found
No related merge requests found
public class Strings {
public static boolean isNumeric(String term) {
for (int i = 0; i < term.length(); i++) {
System.out.println(term.charAt(i));
}
for (char c : term.toCharArray()) {
}
return true;
}
// public static int[] indexes(String term, char c) {
// }
//
//
public static void main(String[] args) {
isNumeric("Wesh alors!");
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment