信奥赛题1001:Hello,World!

哈葡人的博客 / 2023-05-05 / 原文

这个题实在是太简单的了,无法比喻,直接付代码!

//c++
#include<bits/stdc++.h>
using namespace std;

int main()
{
  cout<<"Hello,World!";
  return 0;
}
/*c*/
#include<stdio.h>
using namespace std;

int main()
{
  printf("Hello,World!");
  return 0;
}

music不能少