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:
Dùng hàm printf để hiển thị:
//Khai báo thư viện
#include <stdio.h>
int main(){
//Dòng lệnh in chữ "HELLO WORLD!"
printf("HELLO WORLD!");
return 0;
}
Comments
include <stdio.h>
int main(){ printf("HELLO WORLD!"); return 0; }
include <stdio.h>
int main(){
}
include "stdio.h"
int main (){ printf ("HELLO WORLD!"); }
ua ko dc dung cout ak ak phai ghi #include <iostream>
using namespace std; int main(){ cout<<"HELLO WORLD!"; }
Làm sao để tối ưu io (input output) trong python 3
include<stdio.h>
int main (){ printf("HELLO WORLD!"); return 0;
include <stdio.h>
int main(){
}