#include
#include
int main()
{
//syetem启动程序,如果这个程序系统可以找到,不用加路径
//如果环境变量找不到,需要加路径
//windows路径以\\或/
//system("maspaint");//启动画图板
system("C:\\Users\\Administrator\\Desktop\\c++13\\hello.exe");
printf("hello world");
system("pause");//pause程序的作用是等待用户输入任意键
return 0;
}