basically id, like a few hints or tips on how to resolve this issue .. maybe a few things that I could read about arraylists and loop that would make it easier for me to understand! ..
the question arises:
Processing an array of characters: cList is an ArrayList of objects of type Character that has been declared and installed. Write a loop that will read characters that are not spaces, and print the number in the terminal window.
and second question:
Quoting through a string
Assuming the variable was declared as follows:
String s;
and that s is already assigned, write a loop statement that will print the s characters in reverse order (so if s = "HELLO", your loop should print "OLLEH").
for the first question I tried to do:
public ArrayList()
public static void main(String[] args) {
int countBlank;
char ch;
public ArrayList (int cList)
{
int cList = ;
while(cList ){
System.out.println(cList);
}
}
and second question:
, !
!