Jump to content
Fórum Script Brasil

Desligar o windows


marcelo753

Recommended Posts

Olá, sou inciante em questão de programação e desenvolvi um simples programa para desligar o windows. Gostaria que vocês dessem uma olhada nele:

Download

#include <stdio.h>
#include <stdlib.h>


int main(void)
{
    int hora;
    int stop;    
    
    printf("Digite o numero correspondente ao tempo que voce quer que o computador desligue.\n\n\n");
    printf("(1) - 30 minutos\n(2) - 1 Hora\n(3) - 1 Hora e 30 Minutos\n(4) - 2 Horas\n(5) - 2 Hora e 30 Minutos\n(6) - 3 Horas");
    printf("\n\n\n\nNumero: ");
    scanf("%d", &hora);
    
while(hora == 1){
           
    system("cls");
    printf("O computador sera desligado em 30 Minutos...");
    system("shutdown -s -t 1800");
    _sleep(2000);
    system("cls");
    printf("(1) - Abortar o desligamento do sistema\n");
    printf("\n\nNumero: ");
    scanf("%d", &stop);

while(stop == 1){
         
    system("shutdown -a");
    system("cls");
    main();}}

while(hora == 2){
           
    system("cls");
    printf("O computador sera desligado em 1 Hora...");
    system("shutdown -s -t 3600");
    _sleep(2000);
    system("cls");
    printf("(1) - Abortar o desligamento do sistema\n");
    printf("\n\nNumero: ");
    scanf("%d", &stop);
    
while(stop == 1){
         
    system("shutdown -a");
    system("cls");
    main();}}
    
while(hora == 3){
           
    system("cls");
    printf("O computador sera desligado em 1 Hora e 30 Minutos...");
    system("shutdown -s -t 5400");
    _sleep(2000);
    system("cls");
    printf("(1) - Abortar o desligamento do sistema\n");
    printf("\n\nNumero: ");
    scanf("%d", &stop);
    
while(stop == 1){
         
    system("shutdown -a");
    system("cls");
    main();}}
    
while(hora == 4){
           
    system("cls");
    printf("O computador sera desligado em 2 Horas...");
    system("shutdown -s -t 7200");
    _sleep(2000);
    system("cls");
    printf("(1) - Abortar o desligamento do sistema\n");
    printf("\n\nNumero: ");
    scanf("%d", &stop);
    
while(stop == 1){
         
    system("shutdown -a");
    system("cls");
    main();}}
    
while(hora == 5){
           
    system("cls");
    printf("O computador sera desligado em 2 Horas e 30 Minutos...");
    system("shutdown -s -t 9000");
    _sleep(2000);
    system("cls");
    printf("(1) - Abortar o desligamento do sistema\n");
    printf("\n\nNumero: ");
    scanf("%d", &stop);
    
while(stop == 1){
         
    system("shutdown -a");
    system("cls");
    main();}}
    
while(hora == 6){
           
    system("cls");
    printf("O computador sera desligado em 3 Horas...");
    system("shutdown -s -t 10800");
    _sleep(2000);
    system("cls");
    printf("(1) - Abortar o desligamento do sistema\n");
    printf("\n\nNumero: ");
    scanf("%d", &stop);
    
while(stop == 1){
         
    system("shutdown -a");
    system("cls");
    main();}}
           
}

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...