PLATFORM
  • Tails

    Create websites with TailwindCSS

  • Blocks

    Design blocks for your website

  • Wave

    Start building the next great SAAS

  • Pines

    Alpine & Tailwind UI Library

  • Auth

    Plug'n Play Authentication for Laravel

  • Designer comingsoon

    Create website designs with AI

  • DevBlog comingsoon

    Blog platform for developers

  • Static

    Build a simple static website

  • SaaS Adventure

    21-day program to build a SAAS

Written By
Views

코드업 C++ 기초 100제 [기초-출력]

#include <iostream>
using namespace std;

int main()
{
  cout<<"Hello";
  return 0;
}
#include <iostream>
using namespace std;

int main(){
    cout<<"Hello World";
    return 0;
}
#include <iostream>
using namespace std;

int main(){
cout<<"Hello\nWorld";
return 0;
}
#include <iostream>
using namespace std;

int main(){
cout<<"\'Hello\'";
return 0;
}
#include <iostream>
using namespace std;

int main(){
cout<<"\"Hello World\"";
return 0;
}
#include <iostream>
using namespace std;

int main(){
cout<<"\"!@#$%^&*()\"";
return 0;
}

1007

#include <iostream>
using namespace std;

int main(){
cout<<"\"C:\\Download\\hello.cpp\"";
return 0;
}

Comments (0)

loading comments