Clasified in Notes of Physics of Other Classes.
Written at June 09, 2010 on
English with a size of 727 bytes.
1.Escrever as definições correspondentes às classes TPessoa e TAluno contendo somente a especificação básica das classes citadas . Obs: TPessoa é uma classe abstrata.
R:
namespace ListaEx01a03
{
public class TEnd
{
// Atributos da classe
private string Logradouro;
private string Cidade;
private string CEP;
//Construtor sem parametros
public TEnd()
{
Logradouro = "";
Cidade = "";
CEP = "";
}
//Constutor com parametros
public TEnd(string Logradouro, string Cidade, string CEP)
{
this.Logradouro = Logradouro;
this.Cidade = Cidade;
this.CEP = CEP;
}
Clasified in Notes of Physics of Other Classes.
Written at March 11, 2010 on
English with a size of 665 bytes.
Clasified in Notes of Physics of Other Classes.
Written at March 11, 2010 on
English with a size of 784 bytes.
Clasified in Notes of Physics of Other Classes.
Written at March 11, 2010 on
English with a size of 937 bytes.
Clasified in Notes of Physics of Other Classes.
Written at March 11, 2010 on
English with a size of 907 bytes.