This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Text.RegularExpressions; | |
using System.Globalization; | |
public class HelloWorld | |
{ | |
public static void Main(string[] args) | |
{ | |
/* 1. Crie um programa em que o usuário precisa digitar um nome e uma mensagem de boas | |
vindas personalizada com o nome dele é exibida: Olá, Welisson! Seja muito bem-vindo! */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
setlocal | |
set /p "dream_path=Digite o caminho completo para a pasta raiz (ou utilize %cd%): " | |
set /p "remove_folder=Pasta a ser removida: " | |
if "%dream_path%" == "" ( | |
set "dream_path=%cd%" | |
) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Executar comandos a seguir para atualizar os pacotes | |
sudo apt update -y | |
sudo apt upgrade -y | |
# Só o Python | |
sudo apt install python3.10-full python3.10-dev -y | |
# Instalar pacotes a seguir |