This file contains 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
/* | |
Questão 5 | |
O que faz um método construtor? | |
Crie uma classe Pessoa e defina | |
seu construtor padrão. | |
---------------------------------- | |
1° CLASSE PUBLICA OBJ Pessoa; | |
2º ATRIBUTO CRIADO DENTRO DA CLASSE; | |
3° CONSTRUTOR DE CLASSE PARA O class Pessoa; | |
4° VALOR SETADO INCIALMENTE PARA O ATRIBUTO usrUm; |
This file contains 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 <string.h> | |
int main(){ | |
int numeroInteiro = 10; | |
float numeroReal = 3.75; | |
printf("O numero Inteiro eh: %d",numeroInteiro); | |
printf("\nO numero Real eh: %.2f",numeroReal); |