当前位置:网站首页>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;
}
边栏推荐
- 字节面试官狂问我:你没有高并发、性能调优经验,为什么录取你?
- 嵌入式Qt-做一个秒表
- SQL Statement Basics
- Playing in the cloud | The key technology of Tianyi cloud object storage ZOS high availability is revealed
- Arduino hardware programming introduction to language learning
- 小程序毕设作品之微信体育馆预约小程序毕业设计成品(5)任务书
- ECCV 2022 | 清华&腾讯AI Lab提出REALY:重新思考3D人脸重建的评估方法
- ffmpeg cannot find libx264 after compilation
- MySQL基本语法
- Flink学习9:配置idea开发flink-Scala程序环境
猜你喜欢
随机推荐
打补丁的日子,比写代码的日子难熬多了
判断文件属主
MySQL基本语法
发挥云网融合优势,天翼云为政企铺设数字化转型跑道
SQL Statement Basics
Five speakers: seventy genius_platform software platform development 】 【 turn YUY2 RGB24 implementation source code
织梦自定义表单添加全选和全不选功能按钮
Cpolar application example of data acquisition equipment
电烙铁的基础知识
docker安装Oracle之后常用的一些命令
KunlunBase 1.0 发布了!
ES: WeakSet
腾讯架构师是如何解释:Redis高性能通信的原理(精华版)
方法的使用
redis总结_基础
Ubuntu系统下用docker安装oracle
潮玩的“第二春”,在哪?
golang源码分析(10)slice
Playing in the cloud | The key technology of Tianyi cloud object storage ZOS high availability is revealed
Go 语言快速入门指南: 介绍及安装