摘要: 传送门 L1-1 自动编程 #include<iostream> #include<cstdio> using namespace std; int main(){ int a; cin>>a; printf("print(%d)",a); return 0; } L1-2 太神奇了 #includ 阅读全文
posted @ 2023-04-17 09:00 north_h 阅读(19) 评论(0) 推荐(0)
摘要: 传送门 A Yura's New Name 签到题,怪我没有皇后看样例子,意思就是把有^和_组成的字符串加若干个字符使得全部都是笑脸(^^或^_^),所一我们遍历一下字符串,把连着都是两个的地方加上^即可,最后处理一下开头和结尾就行 #include<bits/stdc++.h> #define i 阅读全文
posted @ 2023-04-17 09:00 north_h 阅读(16) 评论(0) 推荐(0)