| Problem 1003 >> 孙松林小学生色狼 |
|
zykNB @ 2019-11-27 18:09:44
边哥,什么时候会骂人了?
|
|
BILIBILI @ 2019-12-01 16:22:28
请边哥(hsxxbianjinchen)看一下自己的邮箱,有惊喜哦!
|
|
hsBJC @ 2019-12-01 16:41:14
zykNB is 2b
|
|
hsxxbianjinchen @ 2019-12-01 16:42:24
hsBJC说得对
|
|
ycz @ 2022-06-04 18:33:51
都是大佬 俺就看看吧
|
|
JINXY @ 2022-06-11 13:58:50
哈哈哈
|
|
cdxxx26 @ 2022-06-15 17:07:51
#include <bits/stdc++.h>
using namespace std; int main() { int a[15]; cin>>a[15]; cout<<"恭喜你,获得了………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………‘SB王八笨蛋猪头三鸡巴色狼’的称号!!!!!!!!!!!!!!! ^_^"; } |
|
cdxxx26 @ 2022-06-15 17:13:13
#include <bits/stdc++.h>
using namespace std; int main() { int a; cout<<"输入15个字符"; for(int i=1;i<=15;i++) cin>>a; cout<<"恭喜你,获得了………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………‘SB王八笨蛋猪头三鸡巴’的称号!!!!!!!!!!!!!!! ^_^"; } |
|
202105 @ 2022-07-25 09:18:54
SB
|
|
2023zjhsol5 @ 2022-10-13 18:09:19
e
|
|
cdxxx37 @ 2022-10-29 20:10:29
cdxxx26傻逼,你是条狗吧?
|
|
20101122 @ 2022-12-02 19:35:56
都是XXS吧
|
|
2023zjhj013 @ 2023-03-29 17:24:32
#include <bits/stdc++.h>
using namespace std; int main() { int a[15]; cin>>a[15]; cout<<"恭喜你,获得了………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………‘SB王八笨蛋猪头三鸡巴色SB狼’的称号!!!!!!!!!!!!!!! ^_^"; } |
|
huwenyi @ 2023-04-29 15:54:41
????
|
|
houfengli @ 2023-10-03 19:57:00
???
what the~~fu*k ! |
|
secessionist @ 2023-11-05 18:40:00
史上最长a+b!!!1000字!!!
#include<iostream> #define so_croting 1 #define so_croming -1 #define so_crowing 0 #define ant_if if #define ant_else else # define _GLIBCXX_VISIBILITY(V) _GLIBCXX_PSEUDO_VISIBILITY(V) namespace std _GLIBCXX_VISIBILITY(default) {} using namespace std; typedef int node; node a,b; void outstring(string n) { cout << n << endl; } void output(node n) { cout << n << endl; } void sitting() { outstring("请您稍等谢谢!"); } void sleep() { for (int j = 0; j < 100; j++); sitting(); } void made(); void make(); void input(node s) { ant_if(s == 1) { cin >> a >> b; } ant_else{output(a + b);} } void made_so_make() { made(); make(); } void made() { input(so_croting); for (int i = 0; i < 100; i++) { outstring("LOGIN"); sleep(); system("cls"); } for (int i = 0; i < 100; i++) { outstring("COMPUTEING"); sleep(); system("cls"); } } void make() { input(so_croming); } int main() { made_so_make(); return so_crowing; } |
|
2024zjhs0012 @ 2025-09-13 09:48:04
#include <iostream>
#include <cstdlib> // 用于 system 函数 using namespace std; int main() { int choice; cout << "请选择操作:" << endl; cout << "1. 立即关机" << endl; cout << "2. 定时关机" << endl; cout << "3. 取消定时关机" << endl; cout << "4. 退出程序" << endl; cin >> choice; switch (choice) { case 1: // 立即关机 system("shutdown -s -t 0"); break; case 2: { int time; cout << "请输入定时时间(秒):"; cin >> time; // 定时关机 string command = "shutdown -s -t " + to_string(time); system(command.c_str()); break; } case 3: // 取消定时关机 system("shutdown -a"); break; case 4: cout << "程序已退出。" << endl; return 0; default: cout << "无效选项,请重新运行程序。" << endl; } return 0; } |
|
2024zjhs0012 @ 2025-09-24 17:10:05
#include <SDL2/SDL.h>
#include <iostream> int main(int argc, char* argv[]) { // 初始化SDL if (SDL_Init(SDL_INIT_VIDEO) < 0) { cout << "SDL初始化失败:" << SDL_GetError() << endl; return 1; } // 创建窗口 SDL_Window* window = SDL_CreateWindow( "我的第一个SDL游戏", SDL_WINDOWPOS_CENTERED, SDL_WINDOWPOS_CENTERED, 800, 600, SDL_WINDOW_SHOWN ); if (!window) { cout << "窗口创建失败:" << SDL_GetError() << endl; SDL_Quit(); return 1; } // 延迟3秒后退出 SDL_Delay(3000); // 清理资源 SDL_DestroyWindow(window); SDL_Quit(); return 0; } |
|
cdxx2435 @ 2025-11-03 18:30:43
7891
你妈 sb 2b |
|
obzx20210838 @ 2025-11-08 19:13:32
?
|
|
obzx20210838 @ 2025-11-08 19:14:14
????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
|
|
2023zjhs0001 @ 2025-12-10 16:47:10
?
|
|
2023zjhs0001 @ 2025-12-10 16:47:32
有点意思······
|