lista de exercicios 2

443 palavras 2 páginas
LISTA DE EXERCICÍOS 2

1 - Faça um programa que receba quatro números inteiros, calcule e mostre a soma desses números. import java.util.Scanner; public class ex_8 { public static void main (String args[]){ Scanner entrada = new Scanner(System.in); int N1, N2, N3, N4, SOMA; System.out.print("Digite quatro números inteiros: "); N1 = entrada.nextInt(); N2 = entrada.nextInt(); N3 = entrada.nextInt(); N4 = entrada.nextInt(); SOMA = N1+N2+N3+N4; System.out.printf("A soma dos números é %d\n", SOMA);
}
}
2 - Faça um programa que receba três notas, calcule e mostre a média aritmética entre elas. import java.util.Scanner; import java.text.DecimalFormat; public class ex_9 { public static void main (String args[]){ Scanner entrada = new Scanner(System.in); double NOTA1, NOTA2, NOTA3, MEDIA; DecimalFormat NOTAS = new DecimalFormat("0.0"); System.out.print("Digite as três notas: "); NOTA1 = entrada.nextDouble(); NOTA2 = entrada.nextDouble(); NOTA3 = entrada.nextDouble(); MEDIA = (NOTA1+NOTA2+NOTA3)/3; System.out.printf("A média das notas é: " +NOTAS.format(MEDIA)); }
}
3 - Faça um programa que receba três notas e seus respectivos pesos, calcule e mostre a média ponderada dessas notas. import java.util.Scanner; import java.text.DecimalFormat; public class ex_10 { public static void main (String args[]){ Scanner entrada = new Scanner(System.in); double NOTA1, NOTA2, NOTA3, MEDIA; int PESO1, PESO2, PESO3; DecimalFormat NOTAS = new DecimalFormat("0.0"); System.out.println("Digite três notas: "); NOTA1 = entrada.nextDouble(); NOTA2 = entrada.nextDouble(); NOTA3 = entrada.nextDouble(); System.out.println("Digite um peso para cada nota"); PESO1 = entrada.nextInt(); PESO2 = entrada.nextInt(); PESO3 = entrada.nextInt(); MEDIA = (NOTA1*PESO1 + NOTA2*PESO2 + NOTA3*PESO3)/ (PESO1 + PESO2 + PESO3); System.out.printf("A média ponderada é: "

Relacionados

  • Lista De Exercicios 2
    649 palavras | 3 páginas
  • Lista de exercícios - 2
    328 palavras | 2 páginas
  • Lista De Exercicios 2
    338 palavras | 2 páginas
  • Lista De Exercicios 2
    608 palavras | 3 páginas
  • Lista De Exercicios 2
    491 palavras | 2 páginas
  • 2 lista de exercicio
    306 palavras | 2 páginas
  • Lista de Exercicio 2
    306 palavras | 2 páginas
  • 2 Lista De Exercicios
    1124 palavras | 5 páginas
  • 2 Lista De Exercício
    911 palavras | 4 páginas
  • LISTA DE EXERCÍCIOS 2
    723 palavras | 3 páginas