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


  • 0
    DTC235200153 - Dương Nguyễn Đức  commented on March 18, 2024, 6:23 a.m.

    include "stdio.h"

    int main (){ printf ("HELLO WORLD!"); }


  • 0
    Buffa_Zombie2005  commented on March 12, 2024, 1:31 a.m.

    ua ko dc dung cout ak ak phai ghi #include <iostream>

    using namespace std; int main(){ cout<<"HELLO WORLD!"; }


  • 0
    luuquyhop  commented on Jan. 2, 2024, 7:47 p.m.

    Làm sao để tối ưu io (input output) trong python 3


  • 0
    DTC225200213 - Nguyễn Thị Đào  commented on May 17, 2023, 3:45 a.m.

    include<stdio.h>

    int main (){ printf("HELLO WORLD!"); return 0;


  • 0
    DTC225180079 - Bùi Đức Dũng  commented on April 23, 2023, 5:00 p.m.

    include <stdio.h>

    int main(){

    //Dòng lệnh in chữ "HELLO WORLD!"
    printf("HELLO WORLD!");
    
    return 0;

    }