viktorovna_Imamaevich679
?>

Написать не большой эссе на i and my computer (я и мой компьютер) !

Информатика

Ответы

dimalihachew

Computer is one of the best inventions of the 20th century. It's hard to believe that one small screen with a keyboard can change everybody's life.

letters would be delivered instantly to the addressee,music can be downloaded in a few seconds,millions of documents can be kept on one device,the quality of photos can be easily improved,video calls can reduce distance between friends and relatives, etc.All this became possible with the appearance of computers. In my opinion this smart device has changed the world. My life has also significantly changed when I first started using the computer. Today I'm literally dependent on it because there are many things computer can do for me. First of all, I try to stay in touch with my friends and English pen pals. In this case I use either e-mails or social networks, such as Facebook or Vkontakte. Social networks are even more convenient. There you can see whether your companion is online or not, you can also follow your friends' news. Messages are delivered instantly, so the answer should be quick. E-mails are also good, but you don't know how soon your friend will check the box, so the answer can take some time. 

Apart from Internet and its advantages, I use my computer in studying. Projects and essays are part of my home work. That's why I often use editing programs, such as Word, Excel, PowerPoint. Another frequently used program for me is Skype. Since its creation distance between people has notably reduced. You can video call your friends or relatives for free and speak as much as you wish. I also like keeping photos and music on my computer. Photos can be edited by a special program called Photoshop. It is rather handy, when someone wants to improve the quality of pictures or change the size. When I have free time I read e-books or play some games on computer.

It is obvious than people can do a lot of things with the help of this multitask invention. In our technological era people can't live without computers. They are nearly addicted to this device, but there are some drawbacks as well. First of all, spending a lot of time in front of the computer results in eyesight deterioration. Secondly, people can gain excessive weight if sitting for too long without physical exercise. Thirdly, computer and particularly Internet sometimes provides too much unnecessary information, violence and hidden dangers.
cetarbkilork82
// PascalABC.NET 3.1, сборка 1230 от 27.04.2016
begin
  var s:=ReadLines('in.txt').ToArray;
  var n:=StrToInt(s[0]);
  var a:=s[1].ToWords.Select(e->StrToInt(e)).ToArray;
  var f:=OpenWrite('out.txt');
  Writeln(f,n,' - (кол-во чисел)');
  foreach var e in a do Write(f,e,' '); Writeln(f);
  Writeln(f,'Среднее значение четных ',
    a.Where(x->x.IsEven).Average);
  Writeln(f,'Среднее значение нечетных ',
    a.Where(x->x.IsOdd).Average);
  f.Close
end.

Файлы in.txt и out.txt находятся во вложении.

Содержимое файла out.txt:
15 - (кол-во чисел)
-22 49 33 47 -10 -1 20 -18 2 21 2 -25 21 -47 -36
Среднее значение четных -8.85714285714286
Среднее значение нечетных 12.25
whiskyandcola
Возможный вариант в C++
#include <iostream>
int main()
{
    using namespace std;
    int N;
    cout << "Enter N: ";
    cin >> N;
    int num;
    int max = 1;
    int i;
    for (i = 0; i < N; ++i)
    {
        cout << "Enter #" << i + 1 << " number: ";
        cin >> num;
        if ((num - 9) % 10 != 0 && num % 3 == 0)
        {
            max = num;
            break;
        }
    }
    for (int j = i + 1; j < N; ++j)
    {
        cout << "Enter #" << j + 1 << " number: ";
        cin >> num;
        if ((num - 9) % 10 != 0 && num % 3 == 0)
            if (num > max)
                max = num;
    }
    if (max != 1)
        cout << "Max number div by 3 and don't end 9: " << max << endl;
    else
        cout << "No numbers div by 3 and don't end 9" << endl;
    return 0;
}

Ответить на вопрос

Поделитесь своими знаниями, ответьте на вопрос:

Написать не большой эссе на i and my computer (я и мой компьютер) !
Ваше имя (никнейм)*
Email*
Комментарий*

Популярные вопросы в разделе

arutchevben64
terehin863
brovkinay
kv135549
ValerevnaRustam1072
iracaenko153
mila-vsv
turoverova5
margo55577869
Coffee3862
Marina281
mikek0906
Adabir20156806
Илья Владимировна
Сумарокова