complete the incomplete Java program

Consider the following incomplete Java program which simulates a scenario with 5 people in Hong Kong. Complete the program to test if the statement someoen who lives in Hangzhou likes coffee is true.

public static void main(String[] args) {

String name[] = {"Alice", "Mike", "John", "Tom", "Kob"};
boolean S[] = {true, false, false, true, true};
boolean C[] = {true, true, true, false, true };

if ( )

 System.out.println("Someone who lives in Hangzhou"
                     +"likes coffee");

else // print an appropriate message below

}

建议对问题描述翻译一下。