Блог пользователя aza-zil

Автор aza-zil, история, 5 лет назад, По-английски

Hey!

If I'm using cin/cout with ios::sync_with_stdio(0),cin.tie(0),cout.tie(0) , does scanf/printf still better to use ?

  • Проголосовать: нравится
  • -10
  • Проголосовать: не нравится

»
5 лет назад, # |
  Проголосовать: нравится +5 Проголосовать: не нравится

Sometimes scanf/printf is better. For example,We need read some dates like 1999/12/31,if you use scanf you only need to code like: int y,m,d; scanf("%d/%d/%d",&y,&m,&d);

»
5 лет назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

yes it is scanf and printf are still faster

»
5 лет назад, # |
Rev. 2   Проголосовать: нравится 0 Проголосовать: не нравится

cout.tie(0) is unnecessary to use. But you need to use cout << “\n”; instead of cout << endl

»
5 лет назад, # |
  Проголосовать: нравится -13 Проголосовать: не нравится

I think my fastio template works well using fread. If you use a template of fastio,it is also short to code. For example:1992/12/31,my function getint() would skip the '/' as ' '.