Список вопросов
Как зайти в Даркнет?!
25th January, 01:11
174
0
Как в tkinter из поля ввода Entry получить значение в одну переменную и обновить строку кнопкой, затем получить ещё одно введённое значение и затем сложить их. Ниже пример кода
21st July, 19:00
1525
0
Программа, которая создает фейковые сервера в поиске игровых серверов CS 1.6 Steam
21st March, 17:43
1149
0
Очень долго работает Update запрос Oracle
27th January, 09:58
1057
0
не могу запустить сервер на tomcat HTTP Status 404 – Not Found
21st January, 18:02
1031
0
Где можно найти фрилансера для выполнения поступающих задач, на постоянной основе?
2nd December, 09:48
1072
0
Разработка мобильной кроссплатформенной военной игры
16th July, 17:57
1869
0
период по дням
25th October, 10:44
4087
0
Пишу скрипты для BAS только на запросах
16th September, 02:42
3849
0
Некорректный скрипт для закрытия блока
14th April, 18:33
4770
0
прокидывать exception в блоках try-catch JAVA
11th March, 21:11
4515
0
Помогите пожалуйста решить задачи
24th November, 23:53
6263
0
Не понимаю почему не открывается детальное описание продукта
11th November, 11:51
4479
0
Нужно решить задачу по программированию на массивы
27th October, 18:01
4560
0
Метода Крамера С++
23rd October, 11:55
4462
0
помогите решить задачу на C++
22nd October, 17:31
4128
0
Помогите решить задачу на python с codeforces
22nd October, 11:11
4608
0
Python с нуля: полное руководство для начинающих
18th June, 13:58
2731
0
По разделам
 Решение задачи File 24
Дан файл вещественных чисел. Создать файл целых чисел, содержащий длины всех монотонных последовательностей элементов исходного файла. Например, для исходного файла с элементами 1.7, 4.5, 3.4, 2.2, 8.5, 1.2 содержимое результирующего файла должно быть следующим: 2, 3, 2, 2.
Код (Python)
import random def GenerateNumbers(fname): N = random.randint(2,15) print("N = ",N) L = [] x = random.randrange(1,10) L.append(x) for i in range(1,N): lst_rnd = list(range(1,10)) lst_rnd.remove(x) x = random.choice(lst_rnd) L.append(x) print(L) try: f = open(fname, "w") try: for x in L: line = str(x)+"\n" f.write(line) finally: f.close() except IOError: print('Write error: ',fname) def EmptyFile(fname): open(fname, 'w').close() def Write2File(fname,value): try: f = open(fname, "a") try: s = str(value)+'\n' f.write(s) finally: f.close() except IOError: print('Write error: ',fname) f_input = "file24_input.txt" GenerateNumbers(f_input) f_output = "file24_output.txt" EmptyFile(f_output) i = 0 decrease = 0 increase = 0 try: with open(f_input,'r') as f_in: line = f_in.readline() x = int(line.strip()) i = 1 x1 = x x2 = x print(x) for line in f_in: i += 1 x = int(line.strip()) print(x) x1 = x2 x2 = x if x1 > x2: decrease += 1 if increase > 0: print("Increase Length:",increase+1) Write2File(f_output,increase+1) increase = 0 else: increase += 1 if decrease > 0: print("Decrease Length:",decrease+1) Write2File(f_output,decrease+1) decrease = 0 except IOError: print('Open error: ',f_source) if decrease > 0: print("Decrease Length:",decrease+1) Write2File(f_output,decrease+1) if increase > 0: print("Increase Length:",increase+1) Write2File(f_output,increase+1)
Код (Pascal)
program File24; var S:String; F_in: File of Real; F_out: File of Integer; El1,El:Real; len,check:integer; begin Write('File: '); Readln(S); Assign(F_in,S); Reset(F_in); Write('File_out: '); Readln(S); Assign(F_out,S); ReWrite(F_out); Read(F_in,El1); Read(F_in,El); if El1>El then check:=1; if El1 El) and (check=-1) then inc(len) else if (El1 El) and (check=1) then begin Write(F_out,len); check:=-1; len:=2; end else if (El1
File. Абрамян
| File 1 | Просмотров: 4640 |
| File 2 | Просмотров: 3921 |
| File 3 | Просмотров: 1865 |
| File 4 | Просмотров: 2378 |
| File 5 | Просмотров: 1791 |
| File 6 | Просмотров: 1595 |
| File 7 | Просмотров: 1404 |
| File 8 | Просмотров: 1861 |
| File 9 | Просмотров: 1112 |
| File 10 | Просмотров: 1631 |
| File 11 | Просмотров: 1143 |
| File 12 | Просмотров: 1290 |
| File 13 | Просмотров: 1119 |
| File 14 | Просмотров: 1007 |
| File 15 | Просмотров: 911 |
| File 16 | Просмотров: 1153 |
| File 17 | Просмотров: 1337 |
| File 18 | Просмотров: 935 |
| File 19 | Просмотров: 810 |
| File 20 | Просмотров: 988 |
| File 21 | Просмотров: 840 |
| File 22 | Просмотров: 1011 |
| File 23 | Просмотров: 869 |
| File 24 | Просмотров: 866 |
| File 25 | Просмотров: 921 |
| File 26 | Просмотров: 899 |
| File 27 | Просмотров: 762 |
| File 28 | Просмотров: 1016 |
| File 29 | Просмотров: 785 |
| File 30 | Просмотров: 863 |
| File 31 | Просмотров: 767 |
| File 32 | Просмотров: 804 |
| File 33 | Просмотров: 872 |
| File 34 | Просмотров: 878 |
| File 35 | Просмотров: 672 |
| File 36 | Просмотров: 767 |
| File 37 | Просмотров: 649 |
| File 38 | Просмотров: 730 |
| File 39 | Просмотров: 745 |
| File 40 | Просмотров: 653 |
| File 41 | Просмотров: 704 |
| File 42 | Просмотров: 869 |
| File 43 | Просмотров: 648 |
| File 44 | Просмотров: 659 |
| File 45 | Просмотров: 716 |
| File 46 | Просмотров: 627 |
| File 47 | Просмотров: 757 |
| File 48 | Просмотров: 876 |
| File 49 | Просмотров: 768 |
| File 50 | Просмотров: 798 |
| File 51 | Просмотров: 781 |
| File 52 | Просмотров: 804 |
| File 53 | Просмотров: 635 |
| File 54 | Просмотров: 615 |
| File 55 | Просмотров: 688 |
| File 56 | Просмотров: 754 |
| File 57 | Просмотров: 587 |
| File 58 | Просмотров: 736 |
| File 59 | Просмотров: 688 |
| File 60 | Просмотров: 1190 |