信奥赛题1001:Hello,World!

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

//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不能少

posted @ 2023-05-05 17:36  哈葡人  阅读(20)  评论(0编辑  收藏  举报