关于C++20的format

P1001 A+B Problem

Eternal_epoch @ 2022-01-02 20:40:29

#include <iostream>
#include <cstdio>
#include <format>
using namespace std;
int main()
{
    int a,b;
   scanf("%d %d",&a,&b);
    cout <<format("{}",a+b);
    return 0;
}

为什么选你谷的C++20依然过不了?


by ud2_ @ 2022-01-02 20:43:53

目前只有 VS 支持 <format>。本地写代码有 {fmt} 作替代,OJ 上还没有。


by PassName @ 2022-01-02 20:44:23

因为C++20中不包含#include <format>。。。。


by Eternal_epoch @ 2022-01-02 20:46:53

@ud2_ 好的,感谢!


|