17 lines
178 B
C++
17 lines
178 B
C++
|
#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;
|
||
|
}
|