HR30 Day 0: Hello, World.

Jmnote (토론 | 기여)님의 2018년 7월 28일 (토) 17:30 판 (→‎Python)

1 개요

Day 0: Hello, World.

2 PHP

<?php
$_fp = fopen("php://stdin", "r");
$inputString = fgets($_fp);
print("Hello, World.\n");
echo 'Welcome to 30 Days of Code!';
fclose($_fp);

3 Python

input_string = input()
print('Hello, World.')
print(input_string)

4 같이 보기

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}