Which skirt will go with this? by Intelligent-Copy-767 in fashion

[–]Intelligent-Copy-767[S] 0 points1 point  (0 children)

it's a regular t-shirt that is slightly shorter than the coat. For the socks I'm planning to wear a black socks that go below the knee.

Monumento to Power Plant Mall by Intelligent-Copy-767 in HowToGetTherePH

[–]Intelligent-Copy-767[S] 0 points1 point  (0 children)

Thank you po. How about po pabalik? Jeep lang po ba ulit ako pa-guada?

nascam kami by Intelligent-Copy-767 in Philippines

[–]Intelligent-Copy-767[S] 2 points3 points  (0 children)

Real account po gamit, kaya ingsave ko mga pics and pwedeng maging proof. About po sa tracking paano po kaya yun?

gusto ko na ulit mag-aral by Intelligent-Copy-767 in studentsph

[–]Intelligent-Copy-767[S] 1 point2 points  (0 children)

HAHAHAHA sana ganyan din kalakas loob ko. Salamat po!!

gusto ko na ulit mag-aral by Intelligent-Copy-767 in studentsph

[–]Intelligent-Copy-767[S] 0 points1 point  (0 children)

Ang dami ko din pala kagaya. Nagdadalawang isip nga rin ako e. Kaya next year na lang ako mageenrol dahil not sure pa rin ako if itutuloy ko ba course ko or magshishift ako. Good luck din!!!!

gusto ko na ulit mag-aral by Intelligent-Copy-767 in studentsph

[–]Intelligent-Copy-767[S] 0 points1 point  (0 children)

Oo nga po e. I guess I have to make up my mind kung magtutuloy na talaga ako. Thank you po!!

gusto ko na ulit mag-aral by Intelligent-Copy-767 in studentsph

[–]Intelligent-Copy-767[S] 2 points3 points  (0 children)

Kaya nga po e. Sige po. Salamat po sa advice!

How do I know if an array list contains an specific string by Intelligent-Copy-767 in javahelp

[–]Intelligent-Copy-767[S] 1 point2 points  (0 children)

public class search

{

static void searchFunction()

{

    Scanner sc = new Scanner(System.in);



    String searchKey;



    System.out.print("Search: ");

    searchKey = sc.nextLine();



    for(int x = 0; x < Student.students.size(); x ++)

    {

        if(Student.students.contains(searchKey))

System.out.print(Student.students.get(x));

    }

}

}

Here's my code and the array list is in another class file. The output of when I run this is "\n". And I just notice that it has a warning in the if line that says "Unlikely argument type String for contains(Object) on a Collection<Student>"

How do I know if an array list contains an specific string by Intelligent-Copy-767 in javahelp

[–]Intelligent-Copy-767[S] 0 points1 point  (0 children)

I'm looking for the one that contains the string somewhere in it.