Informática, perguntado por mv4315072, 7 meses atrás

CRIE UM PROGRAMA EM C QUE IRÁ APRESENTAR TRÊS SISTEMAS OPERACIONAIS COMO OPÇÕES DE ESCOLHA PARA O USUÁRIO INICIAR O SISTEMA. SENDO O WINDOWS (1), O LINUX (2) E O IOS (3). DEPENDENDO DA OPÇÃO ESCOLHIDA DEVERÁ APRESENTAR NA TELA UMA MENSAGEM DE BOAS VINDAS AO SISTEMA ....(ESCOLHIDO). CASO NÃO SEJA ESCOLHIDO UMA OPÇÃO VÁLIDA, O PROGRAMA DEVERÁ MOSTRAR UMA MENSAGEM DE ERRO.​

Soluções para a tarefa

Respondido por gabrielstuchi22
0

Resposta:

#include <stdio.h>

#include <stdlib.h>

int main(){

 int opcao;

 printf("Escolha uma das seguintes opcoes:\n1 - Windows\n2 - Linux\n3 - ios\n");

 scanf("%d", &opcao);

 system("cls");

   if(opcao == 1) {

     printf("Bem vindo ao sistema Windows.\n\n");

   }

   if(opcao == 2) {

     printf("Bem vindo ao sistema Linux.\n\n");

   }

   if(opcao == 3) {

     printf("Bem vindo ao sistema ios.\n\n");

   }

   if(opcao !=1 && opcao != 2 && opcao != 3) {

     system("cls");

     printf("opcao invalida!\n\n");

     return main(0);

   }

 return 0;

 }

Perguntas interessantes