This file contains 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
621724527 |
This file contains 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
def main(): | |
somaIdade = 0 | |
nomeHomemMaisVelho = "" | |
idadeHomemMaisVelho = 0 | |
qtdMulheresMenosDe20Anos = 0 | |
for i in range(4): | |
print(f"Pessoa #{i+1}") | |
nome = str(input("Nome: ")) |
This file contains 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
public class FizzBuzz { | |
public static void main(String[] args) { | |
for (int number=1; number <= 100; number++){ | |
String result = ""; | |
if (number % 3 == 0) | |
result = "Fizz"; | |
if (number % 5 == 0) | |
result += "Buzz"; | |
if (result.equals("")) | |
System.out.println(number); |
This file contains 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
{"name":"VacinaBô 2.0","created":"2017-12-02T23:41:23.189Z","intents":[{"intent":"IdadeParaTomar","created":"2017-12-03T02:57:46.847Z","updated":"2017-12-03T02:58:21.866Z","examples":[{"text":"Com quantos anos posso tomar","created":"2017-12-03T02:57:55.145Z","updated":"2017-12-03T02:57:55.145Z"},{"text":"Qual a idade para tomar","created":"2017-12-03T02:57:57.632Z","updated":"2017-12-03T02:57:57.632Z"},{"text":"Idade para tomar","created":"2017-12-03T02:58:01.319Z","updated":"2017-12-03T02:58:01.319Z"},{"text":"Com qual idade meu filho pode tomar?","created":"2017-12-03T02:58:10.771Z","updated":"2017-12-03T02:58:10.771Z"},{"text":"Até quantos anos posso tomar","created":"2017-12-03T02:58:21.866Z","updated":"2017-12-03T02:58:21.866Z"}],"description":null},{"intent":"OqueE","created":"2017-12-03T02:51:41.948Z","updated":"2017-12-03T10:46:02.663Z","examples":[{"text":"Qual a função da vacina","created":"2017-12-03T02:51:50.689Z","updated":"2017-12-03T02:51:50.689Z"},{"text":"Existe vacina contra","created":"201 |