数据结构开篇(helloworld)

L如果你害怕失敗,那你很有可能會失敗。 If you’re afraid to fail, then you’re probably going to fail.

cpp

#include <iostream>
int main(){
    std::cout<<"helloworld"<<std::endl;
    return 0;
}