Позвольте мне задать глупый вопрос. В настоящее время я делаю свою учебную работу, но я не понимаю, что означает (charcode: message).
public static void main(String[] args) {
final int [] message =
{82, 96, 103, 103, 27, 95, 106, 105, 96, 28};
//the secret message
final int key = 5;
//key to unlock the message
for (int charcode: message){
System.out.print((char)(charcode + key));
}
//termincate with a newline
System.out.println();
}