ENG  RUSTimus Online Judge
Online Judge
Problems
Authors
Online contests
About Online Judge
Frequently asked questions
Site news
Webboard
Links
Problem set
Submit solution
Judge status
Guide
Register
Update your info
Authors ranklist
Current contest
Scheduled contests
Past contests
Rules
back to board

Discussion of Problem 1000. A+B Problem

Форма ответа как ?как на acmp. ру ?
Posted by Раимбек 15 Oct 2012 11:16
#include <fstream>
using namespace std;

int main()
{
 ifstream fin("INPUT.TXT");
 ofstream fout("OUTPUT.TXT");
 int a,b;
 fin >> a >> b;
 fout << a + b;
 fin.close();
 fout.close();

}

поидет  ??
Re: Форма ответа как ?как на acmp. ру ?
Posted by Раимбек 15 Oct 2012 11:25
Мен агылшынша тiлде белмимын!!
Re: Форма ответа как ?как на acmp. ру ?
Posted by Раимбек 15 Oct 2012 11:27
How to respond to the tasks in your site?
a file or command line?
tell me if the command line ..
Re: Форма ответа как ?как на acmp. ру ?
Posted by Noob 15 Oct 2012 11:41
Read FAQ
Re: Форма ответа как ?как на acmp. ру ?
Posted by Раимбек 15 Oct 2012 15:50
Кай жерде  ' read' ? Корсетше мағам ..
Re: Форма ответа как ?как на acmp. ру ?
Posted by $@$|-|@ 18 Jan 2013 23:08
namespace Project1
{
    class Programa
    {
        static void Main()
        {
            Console.Write("Введите первое число: ");
            int First = Convert.ToInt32(Console.ReadLine());

            Console.Write("Введите второе число: ");
            int Second = Convert.ToInt32(Console.ReadLine());


            Console.WriteLine("Сумма числа {0} и числа {1} равна {2}", First, Second, (First + Second));
            Console.ReadKey();
        }
    }
}

Edited by author 18.01.2013 23:09

Edited by author 18.01.2013 23:09
Re: Форма ответа как ?как на acmp. ру ?
Posted by $@$|-|@ 18 Jan 2013 23:14
or



namespace Project2
{
class adsf
{
static void Main()
    {


        int x;
        int y;


        x = Convert.ToInt32(Console.ReadLine());
        y = Convert.ToInt32(Console.ReadLine());


        Console.WriteLine("Сумма числел = " + (x+y));


        Console.ReadKey();
    }
}
}
Re: Форма ответа как ?как на acmp. ру ?
Posted by Айарпи 28 Jan 2014 15:10
=)