当前位置:网站首页>54.【system系统互动函数大总结】
54.【system系统互动函数大总结】
2022-08-02 17:36:00 【李在奋斗……】
《system函数调用关机》
#include <iostream>
#include <stdlib.h> //调用system函数的头文件
#include <string>
using namespace std;
int main()
{
char s[100];
system("shutdown -s -t 120"); //这里用的是电脑自动关机的程序
while (1)
{
cout << "你的电脑将会在2分钟内自动关机:" << endl;
cout << "如果想取消自动关机,请输入:李威涛是我爹" << endl;
cin >> s;
if (strcmp(s, "傻瓜")==0) //判断的是:左边的是否等于右边
{
cout << "预计在两分钟后的自动关机已取消:" << endl;
system("shutdown -a"); //取消自动关机小程序
break;
}
}
return 0;
}
========================================
《system调用颜色》
0 = 黑色 8 = 灰色?
1 = 蓝色 9 = 淡蓝色
2 = 绿色 A = 淡绿色?
3 = 浅绿色 B = 淡浅绿色
4 = 红色 C = 淡红色
5 = 紫色 D = 淡紫色?
6 = 黄色 E = 淡黄色
7 = 白色 F = 亮白色?
#include <iostream>
#include <stdlib.h>
using namespace std;
int main()
{
system("color 01"); //左边为背景,右边为字体
return 0;
}
========================================
《system调用暂停系统》
#include <iostream>
#include <string>
#include <stdlib.h>
using namespace std;
int main()
{
string s;
cout<<"我喜欢!"<<endl;
cin>>s;
system("pause"); //暂停后面的一切语句
cout<<s;
return 0;
}
========================================
《system调用日期 》
#include <iostream>
#include <stdlib.h>
using namespace std;
int main()
{
cout<<"现在的时间为:"<<endl;
system("DATE"); //显示日期并设置日期
//system("DATE/t") //显示日期
return 0;
}
========================================
《system调用电脑记事本》
#include <iostream>
#include <stdlib.h>
using namespace std;
int main()
{
cout<<"调用电脑的记事本"<<endl;
system("notepad");
return 0;
}
========================================
《syste调用计算器》
#include <iostream>
#include <stdlib.h>
using namespace std;
int main()
{
cout<<"调用计算器:"<<endl;
system("calc");
return 0;
}
========================================
《system更改标题》
#include <iostream>
#include <stdlib.h>
using namespace std;
int main()
{
cout<<"更改标题名称:"<<endl;
system("title 傻瓜");
return 0;
}
========================================
《system调用待处理文件》
#include <iostream>
#include <stdlib.h>
using namespace std;
int main()
{
cout<<"调用计算器:"<<endl;
system("calc");
cout<<"调用电脑的记事本"<<endl;
system("notepad");
cout<<"调用待处理文件:"<<endl;
system("comend.bat"); //首先创建.bat 然后进行编辑
return 0;
}
========================================
《system调用脚本》
#include <iostream>
#include <stdlib.h>
using namespace std;
int main()
{
cout<<"运行脚本:"<<endl;
system("表白.vbs"); //首先创建一个文本文档,后缀改成.vbs
return 0;
}
边栏推荐
- Taking advantage of cloud-network integration, e-Surfing Cloud has paved the way for digital transformation for government and enterprises
- 宝塔搭建实测-基于ThinkPHP5.1的wms进销存源码
- Informatica旗下PowerCenter的元数据库解析
- 使用lodash替换js字符串中的变量
- E-Surfing Cloud 4.0 Distributed Cloud Enables Digital Transformation of Thousands of Industries
- 织梦提示信息提示框美化
- FP6606CLP5 SOP-8 USB Type-C和PD充电控制器
- 红队实战靶场ATT&CK(一)
- 查看数据库数据量大小,占用磁盘大小
- 牛津硕士进碳圈,高瓴红杉经纬一起投了
猜你喜欢
随机推荐
ES: Promise的基本用法
Taking advantage of cloud-network integration, e-Surfing Cloud has paved the way for digital transformation for government and enterprises
ES: WeakSet
嵌入式Qt-做一个秒表
C语言中的一系列操作符
潮玩的“第二春”,在哪?
How Tencent architects explained: The principle of Redis high-performance communication (essential version)
阿波罗 planning代码-modules\planning\lattice\trajectory_generation\PiecewiseBrakingTrajectoryGenerator类详解
我用这一招让团队的开发效率提升了 100%!
一篇文章带你搞定BFC~
罗敏背后是抖音
ES: export 的用法
SQL Statement Basics
Local broadcast MSE fragments mp4 service
php弱类型-攻防世界lottery
发挥云网融合优势,天翼云为政企铺设数字化转型跑道
基于HDF的LED驱动程序开发(1)
玩转云端 | 天翼云对象存储ZOS高可用的关键技术揭秘
ECCV 2022 | 清华&腾讯AI Lab提出REALY:重新思考3D人脸重建的评估方法
vulnhub W34kn3ss: 1









