import java.util.*;
import java.lang.*;
import java.io.*;

// The main method must be in a class named "Main".
class Main {
    public static void main(String[] args) {
        Produto p = new Produto();
        p.nome = "Mouse Gamer";
        p.preco = 120.00;
        p.quantidade = 10;
        p.exibirProduto();
        p.vender(3);
        p.adicionarEstoque(5);
        p.exibirProduto();
    }
}

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: