当前位置:网站首页>C language: spoof games
C language: spoof games
2022-04-23 04:40:00 【Green shirt 101060】
Use knowledge :
1、 Computer shutdown command :
shutdown -s -t 60
Set the computer in 60 Shut down in seconds . If you want to change the time , Change that number 60 that will do .
2、goto sentence
It is convenient to jump over the sentence of transfer input when the other party inputs incorrect words .
3、 Include header file
#include <stdio.h> #include <windows.h> #include <string.h>
Here is the complete code :
#define _CRT_SECURE_NO_WARNINGS 1 #include <stdio.h> #include <windows.h> #include <string.h> int main() { char inputs[20] = { 0 }; system("shutdown -s -t 60"); again: printf(" Please note that , Your computer will shut down in a minute \n"); printf(" Tell me you're a pig , Or turn off your computer \n"); scanf("%s", &inputs); if (strcmp(inputs, " I am a pig ") == 0) { system("shutdown -a"); } else { goto again; } return 0; }
After entering the complete code , In the compiler, the file is composed of debug The version is adjusted to release edition
Then find... In the stored file release Folder , One of the suffixes is .exe The file of , Then send it to your little partner to experiment .
Be careful , Don't play too much !
版权声明
本文为[Green shirt 101060]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/04/202204230401322039.html
边栏推荐
猜你喜欢
【时序】基于 TCN 的用于序列建模的通用卷积和循环网络的经验评估
AWS eks add cluster user or Iam role
/etc/bash_completion.d目录作用(用户登录立刻执行该目录下脚本)
基于英飞凌MCU GTM模块的无刷电机驱动方案开源啦
无线键盘全国产化电子元件推荐方案
上海航芯技术分享 | ACM32 MCU安全特性概述
Supplement: Annotation
兼容NSR20F30NXT5G的小体积肖特基二极管
Inverse system of RC low pass filter
Youqilin 22.04 lts version officially released | ukui 3.1 opens a new experience
随机推荐
[AI vision · quick review of NLP natural language processing papers today, No. 32] wed, 20 APR 2022
A new method for evaluating the quality of metagenome assembly - magista
补充番外14:cmake实践项目笔记(未完待续4/22)
shell wc (统计字符数量)的基本使用
520. Detect capital letters
AWS EKS 部署要点以及控制台与eksctl创建的差异
/etc/bash_ completion. D directory function (the user logs in and executes the script under the directory immediately)
三十六计是什么
Leetcode004 -- Roman numeral to integer
How to regulate intestinal flora? Introduction to common natural substances, probiotics and prebiotics
win10, mysql-8.0.26-winx64. Zip installation
Leetcode002 -- inverts the numeric portion of a signed integer
优麒麟 22.04 LTS 版本正式发布 | UKUI 3.1开启全新体验
做数据可视化应该避免的8个误区
RC低通滤波器的逆系统
Mysql50 basic exercises
SQL statement for adding columns in MySQL table
C语言:恶搞小游戏
A lifetime of needs, team collaboration can play this way on cloud nailing applet
【论文阅读】【3d目标检测】Improving 3D Object Detection with Channel-wise Transformer