BS 0.1.0 构建中

This commit is contained in:
ninemine
2025-06-29 17:43:24 +08:00
parent 206e10dcbd
commit 209a21d46a
10 changed files with 2824 additions and 2 deletions

View File

@@ -1,4 +1,5 @@
#include"Config.hpp"
//#include"Config.hpp"
#include"Architecture.hpp"
using namespace std;
@@ -9,6 +10,17 @@ using namespace std;
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;
}