Блог пользователя spakk9

Автор spakk9, история, 4 года назад, По-английски

I solved FHC qualification problems , but when i try to submit it , it says i need to generate a output file (validate) . How to do it . I use Geany Text Editor .

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

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

You need to generate output file (for given validation input) and submit it there. use simple file IO for same.

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

    while submitting my source code ,i removed these lines . Will it cause any error ?

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

      No, it will not cause any error if you don't want to remove lines then can use snippet below

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

You can simply use < (input) and > (output) in command line while running your code. For example for c++ , it would be : ./a.out < input.txt > output.txt