如何使用c程序关闭计算机?

编程入门 行业动态 更新时间:2024-10-25 10:28:57
本文介绍了如何使用c程序关闭计算机?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

快速回复我想提交我的项目

reply fast i want to submit my project

推荐答案

我们不做你的功课:这是有原因的。它就是为了让你思考你被告知的事情,并试着理解它。它也在那里,以便您的导师可以识别您身体虚弱的区域,并将更多的注意力集中在补救措施上。 亲自尝试,你可能会发现它不是和你想的一样困难! We do not do your homework: it is set for a reason. It is there so that you think about what you have been told, and try to understand it. It is also there so that your tutor can identify areas where you are weak, and focus more attention on remedial action. Try it yourself, you may find it is not as difficult as you think!

首先阅读解决方案1然后尝试.. :) First read solution 1 and then try.. :) #include <stdio.h> #include <stdlib.h> main() { char ch; printf("Do you want to shutdown your computer now (y/n)\n"); scanf("%c",&ch); if (ch == 'y' || ch == 'Y') system("C:\\WINDOWS\\System32\\shutdown -s"); return 0; }

C程序关闭或关闭计算机 [ ^ ] 关闭PC的C程序 [ ^ ] C程序关闭或关闭计算机 [ ^ ] C Program F或者在Windows 7中关闭并重新启动计算机 [ ^ ] 自动生成的stdio删除结束标记

C program to shutdown or turn off computer[^] C program to shutdown PC[^] C program to shutdown or turn off computer[^] C Program For Shutdown And Restart Computer In Windows 7[^] auto-generated closing tags for stdio deleted

最简单的方法是使用系统 [ ^ ]致电发出关闭适用于您的操作系统的命令。 例如 To simplest way is possibly using system[^] call to issue the shutdown command appropriate for your operative system. for instance system("shutdown -h now");

Linux (请注意:您必须拥有相应的权限才能成功发出命令)。

on Linux (Please note: you must have the appropriate privileges, in order to successfully issue the command).

更多推荐

如何使用c程序关闭计算机?

本文发布于:2023-11-02 13:47:04,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1552559.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:如何使用   关闭计算机   程序

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!