Prof_Carvalho

Untitled

Mar 1st, 2021
681
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.51 KB | None | 0 0
  1. package carvalho.zanini.murilo;
  2.  
  3. public class Basico01 {
  4.     public static void main(String[] args) {
  5.         int ano_nascimento;
  6.         float salario;
  7.         double cosmo;
  8.         boolean despertouSetimoSentido;
  9.         String nome;
  10.  
  11.         ano_nascimento = 1986;
  12.         salario = 1999.99f;
  13.         cosmo = 7000;
  14.         despertouSetimoSentido = false;
  15.         nome = "Ask Ketchum";
  16.  
  17.         System.out.println("Nome:" + nome);
  18.         System.out.println("Salario: " + salario + " Zeny");
  19.  
  20.     }
  21. }
  22.  
Advertisement
Add Comment
Please, Sign In to add comment