- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
#include <iostream>
#include <cstdio>
namespace std {
namespace ios_base2 {
extern struct sync_with_stdio_t {
void h(bool sync = true) {
ios_base::sync_with_stdio(sync);
}
} sync_with_stdio;
}
}
int main() {
std::ios_base2::sync_with_stdio.h(false);
std::cout << "1";
printf("2");
std::cout << "3";
puts("");
return 0;
}
3_dar 25.11.2021 19:46 # 0
guest6 25.11.2021 23:08 # 0
Steve_Brown 26.11.2021 15:11 # 0
Что-то в таком духе?
guest6 26.11.2021 15:18 # +1
bormand 26.11.2021 15:20 # +1
bormand 26.11.2021 15:22 # +1
(my::std::ios_base будет потомком настоящего std::ios_base).