Compare commits
No commits in common. 'master' and 'dev4' have entirely different histories.
@ -1,10 +0,0 @@
|
||||
#include <iostream>
|
||||
#include <chrono>
|
||||
#include <random>
|
||||
#include <climits>
|
||||
|
||||
void atlasPrint() {
|
||||
std::default_random_engine generator(static_cast<int>(std::chrono::steady_clock::now().time_since_epoch().count()));
|
||||
std::uniform_int_distribution<int> distribution(INT_MIN, INT_MAX);
|
||||
std::cout << "Generate a random integer: " << distribution(generator) << std::endl;
|
||||
}
|
||||
@ -1,15 +1,8 @@
|
||||
#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;
|
||||
cout << "hello world" << endl;
|
||||
return 0;
|
||||
}
|
||||
|
||||
Loading…
Reference in new issue