- P1's solution
[题解] P1. [System Test] Hello, World!
- 2025-9-5 20:27:45 @
一般来说,Sleeping Cup 中的题目大多数需要文件读写。请在 文件IO
一栏获知文件名信息。
代码如下:
// P1. [System Test] Hello, World!
// code by:cirrationaler
// time:2025/08/21
#include <bits/stdc++.h>
using namespace std;
int main()
{
// freopen("code.in", "r", stdin);
freopen("test.in", "r", stdin);
freopen("test.out", "w", stdout);
printf("Hello, World!");
return 0;
}