RobertoNobrega / Desafios-DIO-Bootcamp-FullStack-Developer-Banco-Santander-2022

0 stars 0 forks source link

Ajuda #1

Open FelipeHelenoBarbosa opened 2 years ago

FelipeHelenoBarbosa commented 2 years ago

is:open label:question Boa noite Roberto tudo bem? Você já fez os últimos dois desafios da DIO , estou parado neles e gostaria de saber se pode me ajudar

RobertoNobrega commented 2 years ago

Boa Tarde Felipe. Infelizmente não consegui. Eu tentei fazer o primeiro desafio, em JavaScript, porém, o problema está na parte de executar os testes e satisfazer todos os testes, ou seja, consigo satisfazer um teste e os outros não estão dando certo. Por isso, eu continuei os outros módulos, mas também estou na mesma situação.


De: FelipeHelenoBarbosa @.> Enviado: quinta-feira, 21 de julho de 2022 20:45 Para: RobertoNobrega/Desafios-DIO-Bootcamp-FullStack-Developer-Banco-Santander-2022 @.> Cc: Subscribed @.***> Assunto: [RobertoNobrega/Desafios-DIO-Bootcamp-FullStack-Developer-Banco-Santander-2022] Ajuda (Issue #1)

is:open label:question Boa noite Roberto tudo bem? Você já fez os últimos dois desafios da DIO , estou parado neles e gostaria de saber se pode me ajudar

— Reply to this email directly, view it on GitHubhttps://github.com/RobertoNobrega/Desafios-DIO-Bootcamp-FullStack-Developer-Banco-Santander-2022/issues/1, or unsubscribehttps://github.com/notifications/unsubscribe-auth/AF2U5WNXFJGWX6RJJAJTTP3VVH4KDANCNFSM54JSBTWA. You are receiving this because you are subscribed to this thread.Message ID: @.***>

FelipeHelenoBarbosa commented 2 years ago

Roberto, boa noite! Tudo bem? Eu consegui fazer se quiser os códigos posso te passar! Obrigado de qualquer forma

RobertoNobrega commented 2 years ago

Boa Noite Felipe. Poderia fazer o seguinte: Você usa Hangout, pois, como eu tinha relatado, a dificuldade está mais para satisfazer aqueles testes sucessivos. Caso sim, esse é meu Hangout: @.*** . Caso possa ajudar-me, ficarei agradecido, se puder. Obrigado.


De: FelipeHelenoBarbosa @.> Enviado: domingo, 24 de julho de 2022 17:10 Para: RobertoNobrega/Desafios-DIO-Bootcamp-FullStack-Developer-Banco-Santander-2022 @.> Cc: Roberto Nóbrega @.>; Comment @.> Assunto: Re: [RobertoNobrega/Desafios-DIO-Bootcamp-FullStack-Developer-Banco-Santander-2022] Ajuda (Issue #1)

Roberto, boa noite! Tudo bem? Eu consegui fazer se quiser os códigos posso te passar! Obrigado de qualquer forma

— Reply to this email directly, view it on GitHubhttps://github.com/RobertoNobrega/Desafios-DIO-Bootcamp-FullStack-Developer-Banco-Santander-2022/issues/1#issuecomment-1193403443, or unsubscribehttps://github.com/notifications/unsubscribe-auth/AF2U5WIR26PEQTB4ZH7EMJTVVW5OFANCNFSM54JSBTWA. You are receiving this because you commented.Message ID: @.***>

FelipeHelenoBarbosa commented 2 years ago

Roberto, bom dia, o seu hangout veio criptografado *@, vou colar meus códigos e você compara com o seu:

Desafio 1 - Bob conduite: import java.iohttp://java.io/.IOException; import java.util.Scanner; public class Main { public static void main(String[] args) throws IOException { Scanner scan = new Scanner(System.inhttp://system.in/); int T = scan.nextInt(); //TODO: Complete os espaços em branco com uma possível solução para o desafio for (int i = 0; i < T; i++) { int R1 = scan.nextInt(); int R2 = scan.nextInt(); System.out.println(R1 + R2); } scan.close(); } }

Desafio 2 - Pneu: import java.util.Scanner;

public class Main { public static void main(String[] args) { Scanner scan = new Scanner(System.in);

//TODO: Complete os espaços em branco com uma possível solução para o desafio

int N = scan.nextInt(); int M = scan.nextInt() ;

System.out.println(N - M); } }

Desafio 3 - Reservatório de mel:

import java.text.DecimalFormat; import java.util.Scanner;

public class Problem { public static void main(String[] args) throws IOException { Scanner leitor = new Scanner(System.in); DecimalFormat df = new DecimalFormat("0.00"); double V, D, R, area, altura;

//TODO: Complete os espaços em branco com uma possível solução para o desafio

while (leitor.hasNext()) {
    V = leitor.nextDouble();
    D = leitor.nextDouble();
    R = D / 2  ;
    area = 3.14 * (R * R);
    altura = V /  (3.14 * (R * R));
    System.out.println("ALTURA = " + df.format(altura));
    System.out.println("AREA = " + df.format(area));
}

}
}

Desafio 1 - Idades:

import java.io.IOException; import java.util.Scanner;

public class Desafio {

public static void main(String[] args) throws IOException { Scanner leitor = new Scanner(System.in); int cont = 0; double soma = 0; double n = 0; while (n >= 0) { n = leitor.nextInt(); if (n >= 0) { cont++; soma+=n; } } double media = soma / cont; System.out.println(String.format("%.2f", media)); } }

Desafio 2 - A mudança: import java.io.IOException; import java.util.Scanner;

public class AMudanca { public static void main(String[] args) throws IOException { Scanner leitor = new Scanner(System.in); String msg;

while (leitor.hasNext()) { int graus = leitor.nextInt();

if (graus == 360 || graus >= 0 && graus < 90) msg = "Bom Dia!!";
else if (graus >= 90 && graus < 180) msg = "Boa Tarde!!";
else if (graus >= 180 && graus < 270) msg = "Boa Noite!!";
else msg = "De Madrugada!!";

System.out.println(msg);

}

leitor.close(); } }

Desafio 3 - Dragão Berrador: import java.io.IOException; import java.util.Scanner; public class DIO {

public static void main(String[] args) throws IOException { Scanner leitor = new Scanner(System.in); while (leitor.hasNext()) { int N = leitor.nextInt(); int min = leitor.nextInt(); int max = leitor.nextInt(); int cont = 0; // TODO: complete os espaços em branco com sua solução para o problema

    for (int i = 0; i <  N)  i++); {
        int A = leitor.nextInt(); 
        if ( A>=min && A<=max      ) cont++;
    }
    System.out.println( cont     );
}

}

RobertoNobrega commented 2 years ago

Bom Dia. Obrigado Felipe. DEUS TE ABENÇOE SEMPRE.


De: FelipeHelenoBarbosa @.> Enviado: segunda-feira, 25 de julho de 2022 05:29 Para: RobertoNobrega/Desafios-DIO-Bootcamp-FullStack-Developer-Banco-Santander-2022 @.> Cc: Roberto Nóbrega @.>; Comment @.> Assunto: Re: [RobertoNobrega/Desafios-DIO-Bootcamp-FullStack-Developer-Banco-Santander-2022] Ajuda (Issue #1)

Roberto, bom dia, o seu hangout veio criptografado *@, vou colar meus códigos e você compara com o seu:

Desafio 1 - Bob conduite: import java.iohttp://java.io/.IOException; import java.util.Scanner; public class Main { public static void main(String[] args) throws IOException { Scanner scan = new Scanner(System.inhttp://system.in/); int T = scan.nextInt(); //TODO: Complete os espaços em branco com uma possível solução para o desafio for (int i = 0; i < T; i++) { int R1 = scan.nextInt(); int R2 = scan.nextInt(); System.out.println(R1 + R2); } scan.close(); } }

Desafio 2 - Pneu: import java.util.Scanner;

public class Main { public static void main(String[] args) { Scanner scan = new Scanner(System.in);

//TODO: Complete os espaços em branco com uma possível solução para o desafio

int N = scan.nextInt(); int M = scan.nextInt() ;

System.out.println(N - M); } }

Desafio 3 - Reservatório de mel:

import java.text.DecimalFormat; import java.util.Scanner;

public class Problem { public static void main(String[] args) throws IOException { Scanner leitor = new Scanner(System.in); DecimalFormat df = new DecimalFormat("0.00"); double V, D, R, area, altura;

//TODO: Complete os espaços em branco com uma possível solução para o desafio

while (leitor.hasNext()) {

    V = leitor.nextDouble();

    D = leitor.nextDouble();

    R = D / 2  ;

    area = 3.14 * (R * R);

    altura = V /  (3.14 * (R * R));

    System.out.println("ALTURA = " + df.format(altura));

    System.out.println("AREA = " + df.format(area));

}

} }

Desafio 1 - Idades:

import java.io.IOException; import java.util.Scanner;

public class Desafio {

public static void main(String[] args) throws IOException { Scanner leitor = new Scanner(System.in); int cont = 0; double soma = 0; double n = 0; while (n >= 0) { n = leitor.nextInt(); if (n >= 0) { cont++; soma+=n; } } double media = soma / cont; System.out.println(String.format("%.2f", media)); } }

Desafio 2 - A mudança: import java.io.IOException; import java.util.Scanner;

public class AMudanca { public static void main(String[] args) throws IOException { Scanner leitor = new Scanner(System.in); String msg;

while (leitor.hasNext()) { int graus = leitor.nextInt();

if (graus == 360 || graus >= 0 && graus < 90) msg = "Bom Dia!!";

else if (graus >= 90 && graus < 180) msg = "Boa Tarde!!";

else if (graus >= 180 && graus < 270) msg = "Boa Noite!!";

else msg = "De Madrugada!!";

System.out.println(msg);

}

leitor.close(); } }

Desafio 3 - Dragão Berrador: import java.io.IOException; import java.util.Scanner; public class DIO {

public static void main(String[] args) throws IOException { Scanner leitor = new Scanner(System.in); while (leitor.hasNext()) { int N = leitor.nextInt(); int min = leitor.nextInt(); int max = leitor.nextInt(); int cont = 0; // TODO: complete os espaços em branco com sua solução para o problema

    for (int i = 0; i <  N)  i++); {

            int A = leitor.nextInt();

            if ( A>=min && A<=max      ) cont++;

    }

    System.out.println( cont     );

}

}

— Reply to this email directly, view it on GitHubhttps://github.com/RobertoNobrega/Desafios-DIO-Bootcamp-FullStack-Developer-Banco-Santander-2022/issues/1#issuecomment-1193866753, or unsubscribehttps://github.com/notifications/unsubscribe-auth/AF2U5WJCSSZMTFRA2MRBYW3VVZUBHANCNFSM54JSBTWA. You are receiving this because you commented.Message ID: @.***>