Psst.. new poll here.
[email protected] web/email now available. Want one? Go here.
Cannot use outlook/hotmail/live here to register as they blocking our mail servers. #microsoftdeez
Obey the Epel!
Paste
Pasted as C++ by registered user raphael ( 1 year ago )
//Auteur : Raphael De Oliveira
#include <iostream>
#include <vector>
#include "test.h"
using namespace std;
int main() {
test t1;
test t2(50);
test t3(60);
test t4(70);
test t5(80);
vector<test> liste = {t1,t2,t3,t4,t5};
for(test t : liste){
t.toString();
}
return 0;
}
Revise this Paste