+ 1
Input: abc123vcx output: abcvcx123 how to print it in Java without using inbuilt functions
how to print first characters then numbers?
2 Respostas
0
use toCharArray() and for loop
0
Why do you want to print it without the normal functions? What's wrong with System.out.println("abc123vcx"); ?