A Prova Final Java
Por: Pamela Almeida • 15/6/2016 • Exam • 1.025 Palavras (5 Páginas) • 388 Visualizações
ATIVIDADE 1
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package primeira_avaliacao_curso_java;
public class Main {
public static void main(String[] args) {
double n1=9;
double n2=8;
double n3=7;
double n4=8.5;
double n5=9.5;
double soma=(n1+n2+n3+n4+n5);
double media=(soma/5);
double reston1= (soma%n1);
double reston2=(soma%n2);
double reston3=(soma%n3);
double reston4=(soma%n4);
double reston5=(soma%n5);
System.out.println("A média dos valores é: " +media);
System.out.println ("A Soma dos valores é: " +soma);
System.out.println("O Resto da divisão de " +soma+ " por " +n1+ " é: " +reston1);
System.out.println("O Resto da divisão de " +soma+ " por " +n2+ " é: " +reston2);
System.out.println("O Resto da divisão de " +soma+ " por " +n3+ " é: " +reston3);
System.out.println("O Resto da divisão de " +soma+ " por " +n4+ " é: " +reston4);
System.out.println("O Resto da divisão de " +soma+ " por " +n5+ " é: " +reston5);
}
}
ATIVIDADE 2
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package primeira_avaliacao_curso_java2ok;
/**
*
* @author Michelle
*/
public class Main {
public static void main(String[] args) {
/* Se for colocado BalancoTrimestral no nome da classe o mesmo apresenta erro */
int gastosJaneiro=15000;
int gastosFevereiro=23000;
int gastosMarco=17000;
int gastosTrimestre=(gastosJaneiro+gastosFevereiro+gastosMarco);
System.out.println ("O gasto trimestral foi de: " +gastosTrimestre);
}
}
ATIVIDADE 3
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package primeira_avaliacao_curso_java3;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class Main {
public static void main(String[] args) {
BufferedReader dadEnt = new BufferedReader (new InputStreamReader(System.in));
String nota1 = "";
System.out.println("Digite a Primeira nota do aluno");
try {
nota1 = dadEnt.readLine();
} catch (IOException ex){
ex.printStackTrace();
}
String nota2 = "";
System.out.println("Digite a Segunda nota do aluno");
try {
nota2 = dadEnt.readLine();
} catch (IOException ex){
ex.printStackTrace();
}
String nota3 = "";
System.out.println ("Digite a Terceira Nota do aluno");
try {
nota3 = dadEnt.readLine();
} catch (IOException ex){
ex.printStackTrace();
}
String nota4 = "";
System.out.println ("Digite a Quarta Nota do aluno");
try {
nota4 = dadEnt.readLine();
} catch (IOException ex){
ex.printStackTrace();
}
String nota5 = "";
System.out.println ("Digite a Quinta Nota do aluno");
try {
nota5 = dadEnt.readLine();
} catch (IOException ex){
ex.printStackTrace();
}
double n1;
double n2;
double n3;
double n4;
double n5;
n1=Double.valueOf(nota1);
n2=Double.valueOf(nota2);
n3=Double.valueOf(nota3);
n4=Double.valueOf(nota4);
n5=Double.valueOf(nota5);
...