You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
payuthbqf/main.cpp

16 lines
232 B

#include <iostream>
#include "atlas.h"
#include "worka.h"
#include "workb.h"
#include "Circle.h"
using namespace std;
int main() {
atlasPrint();
MyClass().Print();
test().Print();
cout << Circle().Area() << endl;
return 0;
}