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

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

I am participating virtually in ACM Jordan 2017 . the submitting process should be done by sending the file of the code . it the first time that I submit using this way . I am using C# and whatever the problem that I submit for it gives me runtime error . anyone has a solution for this problem ?

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

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

The problem setter said : "Note that your solution should read the input from file and write to the standard output. You can find the input file name below the title of the problem."

See

»
7 лет назад, # |
  Проголосовать: нравится +3 Проголосовать: не нравится
System.IO.StreamReader file = new System.IO.StreamReader("input.txt");  
int xa = Int.Parse(file.ReadLine());
file.Close();