This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package atividade; | |
| public class Vendedor { | |
| private String nome; | |
| private String codigo; | |
| public double comissao; | |
| private String end; | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package seguradora; | |
| /** | |
| * | |
| * @author rafael | |
| */ | |
| public class Clientes { | |
| private String nome; | |
| private String cpf; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #define true 1 | |
| #define false 0 | |
| #include <windows.h> | |
| #ifdef WIN32 | |
| void gotoxy(int coluna, int linha){ | |
| COORD point; |
OlderNewer