OOP HomeWork
This commit is contained in:
11
oop_hw1/oop_hw1_4/main.cpp
Normal file
11
oop_hw1/oop_hw1_4/main.cpp
Normal file
@@ -0,0 +1,11 @@
|
||||
#include <iostream>
|
||||
#include "t_area.h"
|
||||
|
||||
using namespace std;
|
||||
|
||||
int main() {
|
||||
double a, b, c;
|
||||
cin >> a >> b >> c;
|
||||
cout << triangle_area(a,b,c) << endl;
|
||||
return 0;
|
||||
}
|
Reference in New Issue
Block a user