User profile: xstaedtler

User info
User name:xstaedtler
Name:Bryan Watson
Location:London
Bio:.h

#include <cstdlib>
#include <iostream>
#include <string>

using namespace std;

class Soma
{
float valor1;
float valor2;

public:

Soma(float valor1, float valor2);

void setvalor1 (float valo1)
{
valor1=valo1;
}

void setvalor2 (float valo2)
{
valor2=valo2;
}

float getvalor1()
{
return valor1;
}

float getvalor2()
{
return valor2;
}

float somar()
{
float resultado;
resultado=valor1+valor2;
cout << resultado << endl;
}
};


.cpp
#include "somacomclasse.h"
#include <cstdlib>
#include <iostream>
#include <string>

using namespace std;

Soma::Soma(float valo1, float valo2)
{
valor1=valo1;
valor2=valo2;
}

int main()
{
Soma a1(20,15);
a1.somar();
}

--------------------------------------------------



.h
#include <iostream>
#include <string>
#include <cstdlib>

using namespace std;

class Aluno
{
public:

string nome;
string curso;
int idade;

Aluno(string,string,int);

void setNome (int nom)
{
nome=nom;
}

void setCurso (string curs)
{
curso=curs;
}

void setIdade (int idad)
{
idade=idad;
}

string getCurso()
{
return curso;
}

string getNome()
{
return nome;
}

int getIdade()
{
return idade;
}
};


.cpp
#include "teste.h"
#include <iostream>
#include <cstdlib>
#include <string>

using namespace std;

Aluno::Aluno(string nom, string curs, int idad)
{
nome=nom;
curso=curs;
idade=idad;
}


int main()
{
Aluno a1("Bryan", "Medicine", 18);
cout << a1.nome << a1.curso << a1.idade;
}

-------------------------------------------------



int main(int argc, char* argv[])
{
int n = atoi(argv[1]);
char s[50];
cout <<"Escreva a frase"<<endl;
cin.getline(s,50);
int i;
for(i=0;i<n;i++)
cout << s <<endl;
return 0;
}

-------------------------------------------------



all: ex1a ex1b ex1c

ex1a: ex1a.cpp
g++ ex1a.cpp -o ex1a

ex1b: ex1b.cpp
g++ ex1b.cpp -o ex1b

ex1c: ex1c.cpp
g++ ex1c.cpp -o ex1c


clean:
rm -f ex1a
rm -f ex1b
rm -f ex1c

-------------------------------------------------
History
Joined:
Number of posts:3
Latest posts:

[Example] Class C++
.h #include <cstdlib> #include <iostream> #include <string> using namespace std; class So...

[Example] Class C++ with .cpp and .h files
.cpp #include "teste.h" #include <iostream> #include <cstdlib> #include <string> using namesp...

Class
Hey guys, Can you please help me? I'm trying to creat a class, but I don't know how to do it Ca...