Construção de Algoritmos - UAM EAD
Abstract: Construção de Algoritmos - UAM EAD. Pesquise 861.000+ trabalhos acadêmicosPor: testadorbr • 18/11/2014 • Abstract • 248 Palavras (1 Páginas) • 260 Visualizações
Dissertativa Algoritmos
import java.util.Scanner;
public class Dissertativa_1 {
public static void main(String[] args) {
Scanner ent = new Scanner(System.in);
double larg, compr, Area, acmAreaTotal;
int ComodoAtual;
char resp;
ComodoAtual = 0;
acmAreaTotal = 0;
resp = 's';
while(resp == 's') {
ComodoAtual++;
System.out.println("Digite a Largura do comodo " + ComodoAtual + ":");
larg = ent.nextDouble();
System.out.println("Digite o Comprimento do comodo " + ComodoAtual + ":");
compr = ent.nextDouble();
Area = larg * compr;
acmAreaTotal = acmAreaTotal + Area;
System.out.println("Cadastrar novo cômodo (s/n): ");
resp = ent.next().charAt(0);
}
System.out.println("Área Total da Residência com " + ComodoAtual + " comodos = " + acmAreaTotal
+ " M2");
}
}
Duplicando
import java.util.Scanner;
public class Dissertativa_1 {
public static void main(String[] args) {
Scanner ent = new Scanner(System.in);
double larg, compr, Area, acmAreaTotal;
int ComodoAtual;
char resp;
ComodoAtual = 0;
acmAreaTotal = 0;
resp = 's';
while(resp == 's') {
ComodoAtual++;
System.out.println("Digite a Largura do comodo " + ComodoAtual + ":");
larg = ent.nextDouble();
System.out.println("Digite o Comprimento do comodo " + ComodoAtual + ":");
compr = ent.nextDouble();
Area = larg * compr;
acmAreaTotal = acmAreaTotal + Area;
System.out.println("Cadastrar novo cômodo (s/n): ");
resp = ent.next().charAt(0);
...