-
HackerRank.com Practice > C++ > Introduction > Say "Hello, World!" With C++hackerrank.com 2020. 4. 16. 20:07728x90
#include <iostream> #include <cstdio> using namespace std; int main() { ios_base::sync_with_stdio(false); cin.tie(nullptr); cout.tie(nullptr); cout << "Hello, World!"; return 0; }
728x90'hackerrank.com' 카테고리의 다른 글
HackerRank.com Practice > C++ > Introduction > Basic Data Types (0) 2020.04.16 HackerRank.com Practice > C++Introduction > Input and Output (0) 2020.04.16 Java 1D Array (Part 2) / hackerrank.com (0) 2019.12.10 Hackerrank.com Practice>Java>Advanced>Java Singleton Pattern (0) 2019.12.02 Practice>Python>Built-Ins>Athlete Sort (0) 2019.05.01