Posts by Matheus Rambo • 43 points
2 posts
-
0
votes3
answers1794
viewsA: Java - Palindromic string inversion
Why not use recursion? It’s so simple: public static void main(String[] args) { System.out.println(palindromo("reviver", 0)); System.out.println(palindromo("arara", 0));…
-
3
votes1
answer70
viewsQ: Use of % in variables
I can not understand what this symbol serves in a variable, I see its use in some points in codes in SQL, Shell Script, C. For what it serves? For example a use of this symbol in Shel Script:…