Список вопросов
Как зайти в Даркнет?!
25th January, 01:11
4
0
Как в tkinter из поля ввода Entry получить значение в одну переменную и обновить строку кнопкой, затем получить ещё одно введённое значение и затем сложить их. Ниже пример кода
21st July, 19:00
891
0
Программа, которая создает фейковые сервера в поиске игровых серверов CS 1.6 Steam
21st March, 17:43
946
0
Очень долго работает Update запрос Oracle
27th January, 09:58
912
0
не могу запустить сервер на tomcat HTTP Status 404 – Not Found
21st January, 18:02
905
0
Где можно найти фрилансера для выполнения поступающих задач, на постоянной основе?
2nd December, 09:48
936
0
Разработка мобильной кроссплатформенной военной игры
16th July, 17:57
1723
0
период по дням
25th October, 10:44
3954
0
Пишу скрипты для BAS только на запросах
16th September, 02:42
3720
0
Некорректный скрипт для закрытия блока
14th April, 18:33
4613
0
прокидывать exception в блоках try-catch JAVA
11th March, 21:11
4380
0
Помогите пожалуйста решить задачи
24th November, 23:53
6084
0
Не понимаю почему не открывается детальное описание продукта
11th November, 11:51
4350
0
Нужно решить задачу по программированию на массивы
27th October, 18:01
4394
0
Метода Крамера С++
23rd October, 11:55
4308
0
помогите решить задачу на C++
22nd October, 17:31
4002
0
Помогите решить задачу на python с codeforces
22nd October, 11:11
4492
0
Python с нуля: полное руководство для начинающих
18th June, 13:58
2598
0
По разделам
 Решение задачи File 27
Дан файл целых чисел с элементами A1, A2, ..., AN (N — количество элементов в файле). Заменить исходное расположение его элементов на следующее: A1, AN, A2, AN−1, A3, ... .
Код (Python)
# -*- coding: utf-8 -*- import random import string import os import sys import math def GenerateInts(fname): #generate random real numbers and save them to file N = random.randint(2,15) N = 9 #N = 10 print("N = ",N) try: f = open(fname, "w") try: for i in range(0,N): #x = random.randint(1,11) x = i + 1 line = str(x)+"\n" f.write(line) finally: f.close() except IOError: print('Write error: ',fname) 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 GetLineK(fname,K): line = "" N = 0 try: with open(fname,'r') as f: for line in f: N += 1 if K == N: break except IOError: print("Open error:",fname) return -1 finally: return line file1 = "file27.txt" GenerateInts(file1) print("Read from:",file1) try: #file for temporary data N = random.randrange(5,8) S = ''.join(random.choice(string.ascii_lowercase + string.ascii_uppercase \ + string.digits) for _ in range(N)) temp_file_1 = "temp27_" + S + "_1.txt" temp_file_2 = "temp27_" + S + "_2.txt" #print() print("Temp file 1:",temp_file_1) print("Temp file 2:",temp_file_2) N = CountFile(file1) N1 = int(math.ceil(N/2)) N2 = N - int(N/2) try: f_in = open(file1, 'r') try: print("===== Part 1 =====") f_out = open(temp_file_1, 'w') for i in range(1,N1+1): line = f_in.readline() print(i,":",line,end="") f_out.write(line) except IOError: print('Read Error: ',temp_file_1) finally: f_out.close() try: print("===== Part 2 =====") f_out = open(temp_file_2, 'w') for i in range(N,N2,-1): #print(i) line = GetLineK(file1,i) print(i,":",line,end="") f_out.write(line) except IOError: print('Read Error: ',temp_file_2) finally: f_out.close() except IOError: print('Read Error: ',file1) finally: f_in.close() try: f_out = open(file1, 'w') try: f_in1 = open(temp_file_1, 'r') f_in2 = open(temp_file_2, 'r') for i in range(0,N2): line = f_in1.readline() f_out.write(line) line = f_in2.readline() f_out.write(line) finally: f_in2.close() f_in1.close() f_out.close() except IOError: print('Write Error: ',file1) try: os.remove(temp_file_1) os.remove(temp_file_2) except OSError as e: print("\nError:", e) except IOError: print('Open error: ',file1)
Код (Pascal)
program File27; var S:String; F_in,F_temp: File of Integer; temp,i,i2,len:integer; begin Write('File: '); Readln(S); Assign(F_in,S); Reset(F_in); len:=0; while (not eof(F_in)) do begin Read(F_in,temp); inc(len); end; Assign(F_temp,'~'+S); ReWrite(F_temp); for i2:=1 to (len div 2) do begin Close(F_in); Reset(F_in); i:=1; while (not eof(F_in)) and (i<=len-i2+1) do begin Read(F_in,temp); if i=i2 then Write(F_temp,temp); inc(i); end; write(F_temp,temp); end; if (len mod 2 =1) then begin Close(F_in); Reset(F_in); i:=1; while (i<=(len div 2)+1) do begin Read(F_in,temp); inc(i); end; Write(F_temp,temp); inc(i); end; Close(F_in); Close(F_temp); Erase(F_in); Rename(F_temp,S); end.
File. Абрамян
| File 1 | Просмотров: 4599 |
| File 2 | Просмотров: 3881 |
| File 3 | Просмотров: 1822 |
| File 4 | Просмотров: 2277 |
| File 5 | Просмотров: 1763 |
| File 6 | Просмотров: 1568 |
| File 7 | Просмотров: 1373 |
| File 8 | Просмотров: 1833 |
| File 9 | Просмотров: 1087 |
| File 10 | Просмотров: 1602 |
| File 11 | Просмотров: 1112 |
| File 12 | Просмотров: 1254 |
| File 13 | Просмотров: 1097 |
| File 14 | Просмотров: 976 |
| File 15 | Просмотров: 883 |
| File 16 | Просмотров: 1130 |
| File 17 | Просмотров: 1312 |
| File 18 | Просмотров: 906 |
| File 19 | Просмотров: 776 |
| File 20 | Просмотров: 958 |
| File 21 | Просмотров: 815 |
| File 22 | Просмотров: 978 |
| File 23 | Просмотров: 839 |
| File 24 | Просмотров: 835 |
| File 25 | Просмотров: 893 |
| File 26 | Просмотров: 871 |
| File 27 | Просмотров: 738 |
| File 28 | Просмотров: 992 |
| File 29 | Просмотров: 756 |
| File 30 | Просмотров: 838 |
| File 31 | Просмотров: 740 |
| File 32 | Просмотров: 778 |
| File 33 | Просмотров: 850 |
| File 34 | Просмотров: 857 |
| File 35 | Просмотров: 650 |
| File 36 | Просмотров: 745 |
| File 37 | Просмотров: 629 |
| File 38 | Просмотров: 700 |
| File 39 | Просмотров: 718 |
| File 40 | Просмотров: 630 |
| File 41 | Просмотров: 682 |
| File 42 | Просмотров: 842 |
| File 43 | Просмотров: 624 |
| File 44 | Просмотров: 630 |
| File 45 | Просмотров: 693 |
| File 46 | Просмотров: 604 |
| File 47 | Просмотров: 728 |
| File 48 | Просмотров: 851 |
| File 49 | Просмотров: 744 |
| File 50 | Просмотров: 778 |
| File 51 | Просмотров: 757 |
| File 52 | Просмотров: 772 |
| File 53 | Просмотров: 609 |
| File 54 | Просмотров: 587 |
| File 55 | Просмотров: 662 |
| File 56 | Просмотров: 727 |
| File 57 | Просмотров: 560 |
| File 58 | Просмотров: 708 |
| File 59 | Просмотров: 664 |
| File 60 | Просмотров: 1167 |