Список вопросов
Как зайти в Даркнет?!
25th January, 01:11
179
0
Как в tkinter из поля ввода Entry получить значение в одну переменную и обновить строку кнопкой, затем получить ещё одно введённое значение и затем сложить их. Ниже пример кода
21st July, 19:00
1531
0
Программа, которая создает фейковые сервера в поиске игровых серверов CS 1.6 Steam
21st March, 17:43
1154
0
Очень долго работает Update запрос Oracle
27th January, 09:58
1062
0
не могу запустить сервер на tomcat HTTP Status 404 – Not Found
21st January, 18:02
1037
0
Где можно найти фрилансера для выполнения поступающих задач, на постоянной основе?
2nd December, 09:48
1078
0
Разработка мобильной кроссплатформенной военной игры
16th July, 17:57
1874
0
период по дням
25th October, 10:44
4092
0
Пишу скрипты для BAS только на запросах
16th September, 02:42
3854
0
Некорректный скрипт для закрытия блока
14th April, 18:33
4778
0
прокидывать exception в блоках try-catch JAVA
11th March, 21:11
4520
0
Помогите пожалуйста решить задачи
24th November, 23:53
6270
0
Не понимаю почему не открывается детальное описание продукта
11th November, 11:51
4484
0
Нужно решить задачу по программированию на массивы
27th October, 18:01
4566
0
Метода Крамера С++
23rd October, 11:55
4467
0
помогите решить задачу на C++
22nd October, 17:31
4133
0
Помогите решить задачу на python с codeforces
22nd October, 11:11
4613
0
Python с нуля: полное руководство для начинающих
18th June, 13:58
2737
0
По разделам
 Решение задачи File 37
Дан файл целых чисел. Удвоить его размер, записав в конец файла все его исходные элементы (в обратном порядке).
Код (Python)
# -*- coding: utf-8 -*- import random import sys import os def GenerateNumbers(fname): N = random.randint(1,20) print("N = ",N) try: f = open(fname, "w") for i in range(0,N): #x = random.randrange(1,10) x = i + 1 line = str(x)+"\n" f.write(line) f.close() except: print("Error: ", sys.exc_info()[0]) def CountFile(fname): #count number of rows in given text-file N = 0 try: with open(fname,'r') as f: for line in f: N += 1 #print(N,":",line) except IOError: print("Open error:",fname) return -1 finally: return N def GetLineN(fname,N): line = "" k = 0 try: with open(fname,'r') as f: for line in f: k += 1 if k == N: break except IOError: print('Open error: ',file1) return line.strip() f_input = "file37_in.txt" f_output = "file37_out.txt" GenerateNumbers(f_input) print("Read from:",f_input) print("Write to:",f_output) try: N = CountFile(f_input) print("N:",N) with open(f_input, 'r') as f_in, open(f_output, 'w') as f_out: for line in f_in: f_out.write(line) with open(f_output, 'a') as f_out: while N > 0: last_line = GetLineN(f_input,N) f_out.write(last_line+"\n") N -= 1 except: print("Error: ", sys.exc_info())
Код (Pascal)
program File37; var S:String; F_in,F_out: File of Integer; El,i,i2,len:integer; begin Write('File1: '); Readln(S); Assign(F_in,S); Assign(F_out,'~'+S); ReWrite(F_out); Reset(F_in); len:=1; while not eof(F_in) do begin Read(F_in,El); Write(F_out,El); inc(len); end; Close(F_in); for i:=1 to len-1 do begin Reset(F_in); for i2:=1 to len-i do Read(F_in,El); Write(F_out,El); Close(F_in); end; Close(F_out); Erase(F_in); Rename(F_out,S); end.
File. Абрамян
| File 1 | Просмотров: 4641 |
| File 2 | Просмотров: 3922 |
| File 3 | Просмотров: 1867 |
| File 4 | Просмотров: 2379 |
| File 5 | Просмотров: 1791 |
| File 6 | Просмотров: 1596 |
| File 7 | Просмотров: 1405 |
| File 8 | Просмотров: 1862 |
| File 9 | Просмотров: 1113 |
| File 10 | Просмотров: 1633 |
| File 11 | Просмотров: 1144 |
| File 12 | Просмотров: 1291 |
| File 13 | Просмотров: 1120 |
| File 14 | Просмотров: 1008 |
| File 15 | Просмотров: 913 |
| File 16 | Просмотров: 1154 |
| File 17 | Просмотров: 1339 |
| File 18 | Просмотров: 937 |
| File 19 | Просмотров: 811 |
| File 20 | Просмотров: 990 |
| File 21 | Просмотров: 842 |
| File 22 | Просмотров: 1011 |
| File 23 | Просмотров: 871 |
| File 24 | Просмотров: 868 |
| File 25 | Просмотров: 923 |
| File 26 | Просмотров: 900 |
| File 27 | Просмотров: 763 |
| File 28 | Просмотров: 1017 |
| File 29 | Просмотров: 786 |
| File 30 | Просмотров: 864 |
| File 31 | Просмотров: 769 |
| File 32 | Просмотров: 805 |
| File 33 | Просмотров: 872 |
| File 34 | Просмотров: 880 |
| File 35 | Просмотров: 673 |
| File 36 | Просмотров: 768 |
| File 37 | Просмотров: 650 |
| File 38 | Просмотров: 732 |
| File 39 | Просмотров: 747 |
| File 40 | Просмотров: 654 |
| File 41 | Просмотров: 704 |
| File 42 | Просмотров: 870 |
| File 43 | Просмотров: 649 |
| File 44 | Просмотров: 659 |
| File 45 | Просмотров: 716 |
| File 46 | Просмотров: 628 |
| File 47 | Просмотров: 758 |
| File 48 | Просмотров: 877 |
| File 49 | Просмотров: 769 |
| File 50 | Просмотров: 800 |
| File 51 | Просмотров: 782 |
| File 52 | Просмотров: 805 |
| File 53 | Просмотров: 636 |
| File 54 | Просмотров: 616 |
| File 55 | Просмотров: 689 |
| File 56 | Просмотров: 754 |
| File 57 | Просмотров: 589 |
| File 58 | Просмотров: 736 |
| File 59 | Просмотров: 689 |
| File 60 | Просмотров: 1192 |