lab.cpp/tp2.cpp

17 lines
178 B
C++
Raw Normal View History

2016-03-05 22:37:08 +00:00
#include <iostream>
#include "tp2/ZFraction.h"
using namespace std;
int main(){
ZFraction f1(1,10);
ZFraction f2(10);
ZFraction f3(10, 3);
f1.toString();
return 0;
}