Resource id #41

Topic: String

Given a string name, e.g. "Bob", return a greeting of the form "Hello Bob!".

helloName("Bob") → "Hello Bob!"
helloName("Alice") → "Hello Alice!"
helloName("X") → "Hello X!"

Re: String

public String helloName(String name)
{
  return "Hello "+name+"!";
}

Re: String

нзмк официальный сайт