当前位置:网站首页>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;
}
边栏推荐
- php弱类型-攻防世界lottery
- Remember the stuck analysis of an industrial automation control system in .NET
- Google Earth Engine APP—— 一个不用写代码可以直接下载相应区域的1984-2021年的GIF遥感影像动态图
- 查看数据库数据量大小,占用磁盘大小
- 年轻人接棒大妈,金价跌回“4字头”,七夕迎黄金消费小热潮
- Flink学习9:配置idea开发flink-Scala程序环境
- Local broadcast MSE fragments mp4 service
- 百问百答第49期:极客有约——国内可观测领域SaaS产品的发展前景
- 文件上传很难搞?10分钟带你学会阿里云OSS对象存储
- STL案例-招聘新员工
猜你喜欢
随机推荐
vulnhub W34kn3ss: 1
阿波罗 planning代码-modules\planning\lattice\trajectory_generation\PiecewiseBrakingTrajectoryGenerator类详解
JS数组删除其中一个元素
判断文件属主
记一次 .NET 某工控自动化控制系统 卡死分析
IDEA相关配置(特别完整)看完此篇就将所有的IDEA的相关配置都配置好了、设置鼠标滚轮修改字体大小、设置鼠标悬浮提示、设置主题、设置窗体及菜单的字体及字体大小、设置编辑区主题、通过插件更换主题
Go 语言快速入门指南:第二篇 变量与常量
Wechat Gymnasium Appointment Mini Program Graduation Design Finished Works (7) Mid-term Inspection Report
MySQL命令(命令行方式,而非图形界面方式)
宝塔搭建实测-基于ThinkPHP5.1的wms进销存源码
How a "cloud" can bring about new changes in the industry
红队实战靶场ATT&CK(一)
Cpolar application example of data acquisition equipment
攻防世界-favorite_number
Remember the stuck analysis of an industrial automation control system in .NET
Wechat Gymnasium Appointment Mini Program Graduation Design Finished Work (5) Task Book
ECCV 2022 | 清华&腾讯AI Lab提出REALY:重新思考3D人脸重建的评估方法
每日优鲜倒了,叮咚买菜的春天在哪?
H5网页播放器EasyPlayer.js播放器界面的加载效果无法消失是什么原因?
golang源码分析(9)调度








