QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#225366#7521. Find the GapPetroTarnavskyi#Compile Error//C++17186b2023-10-24 16:06:252023-10-24 16:06:25

Judging History

你现在查看的是最新测评结果

  • [2023-10-24 16:06:25]
  • 评测
  • [2023-10-24 16:06:25]
  • 提交

answer

#include <iostream>
#include <set>
#include <map>
using namespace std;
int main()
{
	ios::sync_with_stdio(0);
	cin.tie(0);
	cout << fixed << setprecision(15);
	
	return 0;
}

詳細信息

answer.code: In function ‘int main()’:
answer.code:9:26: error: ‘setprecision’ was not declared in this scope
    9 |         cout << fixed << setprecision(15);
      |                          ^~~~~~~~~~~~