In ra dòng chữ Hello world!
Submit solution
Points:
1 (partial)
Time limit:
1.0s
Memory limit:
256M
Problem type
Allowed languages
C, C++, Java, Python
Viết chương trình hiển thị nội dung "HELLO WORLD!".
Hướng dẫn:
Ví dụ bằng ngôn ngữ lập trình C
//Khai báo thư viện
#include <stdio.h>
int main(){
//Dòng lệnh in chữ "HELLO WORLD!"
printf("HELLO WORLD!");
return 0;
}
Ví dụ bằng ngôn ngữ lập trình Python
print("HELLO WORLD!")
Comments