antiblock
Cyphriun

Search the Community

Showing results for tags 'netbeans'.



More search options

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Comunidade
    • Community Servers
    • Anúncios
    • Apresentações
    • Sugestões
    • Suporte (Tickets)
    • Lixeira do fórum
  • Patrocínios
  • Hardware e Software
    • Smartphones e Tablets
    • Desktops e Laptops
    • Sistemas Operativos
  • Ensino
    • Programação
    • Web Design
    • Ensino Escolar
  • Gaming
    • Gaming Mobile
    • Battle Royale
    • Ação e FPS
    • MOBA
    • RPG e MMORPG
    • Outros Géneros
    • Consolas
  • Gerenciamento de Servidores e Clientes
    • Metin2
    • Minecraft
    • Counter-Strike
    • FiveM
    • Browser
    • Outros Servidores
  • Design World
    • Geral e Galerias de Arte
    • Pedidos de Designer
    • Tutoriais e Recursos
  • WebMaster
    • Geral
    • Alojamento Web
    • Plataformas Web
  • Discussão Geral
    • Notícias
    • Computador
    • Video-Sharing e Streaming
    • Automóveis & Motos
    • Desporto
    • Entretenimento
    • Anúncios e Comércio
    • FunZone
    • Off-Tópic

Categories

  • DEVs/Resellers
    • Plechito
    • iBeast
    • dracaryS
    • Vegas
    • Dungeons
  • Leaks Metin2
    • C++ / C# / Python
    • Unpacked
    • ServerFiles
    • Programs and tools
  • Graphics & 3D & Costume
    • Maps
    • Npc & Mobs
    • Equipment
    • Websites, Designs and Scripts
  • FiveM
  • Windows
    • Releases
  • Música
    • Hip-Hop
  • Trash
    • Metin2
    • Android
    • Aplicações
    • WebMaster
    • Jogos PC

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Discord


E-mail


Website URL


Localizaçao


Sobre mim

Found 1 result

  1. Exemplo: private String nomeprodutoPC; private float precoProdutoPC; private int quantidadeProdutoPC; private float pesoPC; private static boolean produtoAtivoPC; public static void setProdutoAtivoPC(boolean produtoAtivoPC) { ExercicioProdutoPedro.produtoAtivoPC = produtoAtivoPC; } public ExercicioProdutoPedro(String nomeprodutoPC, float precoProdutoPC, int quantidadeProdutoPC, float pesoPC) { this.nomeprodutoPC = nomeprodutoPC; this.precoProdutoPC = precoProdutoPC; this.quantidadeProdutoPC = quantidadeProdutoPC; this.pesoPC = pesoPC; } public String getNomeprodutoPC() { return nomeprodutoPC; } public void setNomeprodutoPC(String nomeprodutoPC) { this.nomeprodutoPC = nomeprodutoPC; } public float getPrecoProdutoPC() { return precoProdutoPC; } public void setPrecoProdutoPC(float precoProdutoPC) { this.precoProdutoPC = precoProdutoPC; } public int getQuantidadeProdutoPC() { return quantidadeProdutoPC; } public void setQuantidadeProdutoPC(int quantidadeProdutoPC) { this.quantidadeProdutoPC = quantidadeProdutoPC; } public float getPesoPC() { return pesoPC; } public void setPesoPC(float pesoPC) { this.pesoPC = pesoPC; } float precoPCIva (float precoPC) { precoPC = (float) (getPrecoProdutoPC()*1.23; } }