更新关于nlohmann的依赖

This commit is contained in:
2025-07-29 11:01:54 +08:00
parent e87627dec9
commit 4ab5c2378a
5 changed files with 8 additions and 23 deletions

View File

@@ -1,26 +1,10 @@
//#include"Config.hpp"
#include"Architecture.hpp"
#include<Config.hpp>
#include<GlobalConfig.hpp>
using namespace std;
#include <iostream>
#include<vector>
#include<map>
using namespace std;
using namespace Convention;
int main()
{
double t = 0;
for (int i = 1; i < 80; i++)
{
t += 1.0 / (double)i;
}
double k = 0;
for (int i = 1; i < 80; i++)
{
k += 1.0 / (double)i;
cout << i << ":\t" << k << "/" << t << "\t=\t" << k / t * 100 << "% current step:\t" <<
1.0 / (double)i << endl;
}
return 0;
cout << ProjectConfig().LoadProperties().FindItem<std::string>("test", "test") << endl;
}