java
/**
* * @author Convidado */ public class JavaApplication4 {
/** * @param args the command line arguments */ public static void main(String[] args) { int var1=0,var2=0,var3=0, resultado=0;
Scanner sc = new Scanner(System.in) ; mensagem("digite o lado 1"); var1= sc.nextInt(); mensagem("digite o lado 2"); var2= sc.nextInt(); mensagem("digite a altura"); var3= sc.nextInt();
resultado = areacubica(var1 ,var2, var3); mensagem("Resultado"+resultado); System.out.println("mostre o resultado" + resultado);
} public static int areacubica(int valor1, int valor2, int valor3){ int resultado = 0; resultado = valor1*valor2*valor3; return resultado; } public static void mensagem(String texto) { System.out.println(texto); }
}
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package javaapplication7; import java.util.Scanner;
/**
* * @author Convidado */ public class JavaApplication7 {
/** * @param args the command line arguments */ public static void main(String[] args) { Scanner teclado = new Scanner(System.in); // Questao1 // Ler valores inteiros do teclado, até um número par ser digitado // (ou seja, parar de ler quando for digitado um valor par). // Após, mostrar a média de todos os valores lidos e