Java 1 - Exercício 1 - Interruptor Da Lampada
Pesquisas Acadêmicas: Java 1 - Exercício 1 - Interruptor Da Lampada. Pesquise 862.000+ trabalhos acadêmicosPor: elaineaz • 10/4/2014 • 283 Palavras (2 Páginas) • 1.083 Visualizações
Pacotes de Códigos-fonte
Lamp.java
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package lampada;
/**
*
* @author David
*/
public class Lamp {
boolean estado;
String watts;
}
Lampada.java
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package lampada;
import java.util.Scanner;
/**
*
* @author David
*/
public class Lampada {
public static void main(String[] args) {
Scanner sc= new Scanner(System.in);
Lamp lampad=new Lamp();
char status;
System.out.println("*********Tipo de Lampada*********");
System.out.println("Voltagem da lampada..............:");
lampad.watts=sc.next();
System.out.println("Lampada acesa? (s / n).............:");
status=sc.next().charAt(0);
if (status=='s'||status=='S')
lampad.estado=true;
else
lampad.estado=false;
System.out.println("A lampada possui:" + lampad.watts +"W");
if (lampad.estado==true)
System.out.println("A lampada esta acesa");
else
System.out.println("A lampada esta apagada");
// TODO code application logic here
}
}
...