示例#1
0
 public function index()
 {
     readByLine($this->input, function ($line) {
         ifPrint(is_prime($line), $line, false);
     });
 }
示例#2
0
 public function index()
 {
     readByLine($this->input, function ($line, $id, $lines) {
         ifPrint($this->is_hello($line), "YES", "NO");
     });
 }
示例#3
0
 public function index()
 {
     readByLine($this->input, function ($line, $id, $lines) {
         newLine($line);
     });
 }