По разделам

 

Решение задачи File 29


Дан файл целых чисел, содержащий более 50 элементов. Уменьшить его размер до 50 элементов, удалив из файла необходимое количество конечных элементов.

Код (Python)

# -*- coding: utf-8 -*-
import random

def GenerateNumbers(fname):
    N = random.randint(50,65)
    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)

f_input = "file29_in.txt"
f_output = "file29_out.txt"
GenerateNumbers(f_input)
print("Read from:",f_input)
print("Write to:",f_output)

try:
    with open(f_input, 'r') as f_in, open(f_output, 'w') as f_out:
        for i in range(50):
            line = f_in.readline()
            f_out.write(line)

except IOError:
    print('Open error: ',file1)
									

Код (Pascal)

program File29;
var
 S:String;
 F_in,F_out: File of Real;
 i:integer;
 El:Real;
begin
  Write('File: ');
  Readln(S);
  Assign(F_in,S);
  Reset(F_in);
  Assign(F_out,'~'+S);
  ReWrite(F_out);
  i:=1;
  while (not eof(F_in)) and (i<=50) do
   begin
    Read(F_in,El);
    Write(F_out,El);
    inc(i);
   end;
  Close(F_in);
  Close(F_out);
  Erase(F_in);
  Rename(F_out,S);
end.
									




File. Абрамян
File 1 Просмотров: 4643
File 2 Просмотров: 3922
File 3 Просмотров: 1867
File 4 Просмотров: 2379
File 5 Просмотров: 1792
File 6 Просмотров: 1596
File 7 Просмотров: 1405
File 8 Просмотров: 1863
File 9 Просмотров: 1115
File 10 Просмотров: 1633
File 11 Просмотров: 1144
File 12 Просмотров: 1291
File 13 Просмотров: 1121
File 14 Просмотров: 1008
File 15 Просмотров: 913
File 16 Просмотров: 1154
File 17 Просмотров: 1340
File 18 Просмотров: 937
File 19 Просмотров: 812
File 20 Просмотров: 990
File 21 Просмотров: 843
File 22 Просмотров: 1012
File 23 Просмотров: 871
File 24 Просмотров: 868
File 25 Просмотров: 923
File 26 Просмотров: 900
File 27 Просмотров: 764
File 28 Просмотров: 1018
File 29 Просмотров: 786
File 30 Просмотров: 866
File 31 Просмотров: 769
File 32 Просмотров: 805
File 33 Просмотров: 873
File 34 Просмотров: 881
File 35 Просмотров: 674
File 36 Просмотров: 768
File 37 Просмотров: 652
File 38 Просмотров: 733
File 39 Просмотров: 747
File 40 Просмотров: 655
File 41 Просмотров: 706
File 42 Просмотров: 870
File 43 Просмотров: 649
File 44 Просмотров: 661
File 45 Просмотров: 719
File 46 Просмотров: 630
File 47 Просмотров: 760
File 48 Просмотров: 879
File 49 Просмотров: 770
File 50 Просмотров: 800
File 51 Просмотров: 782
File 52 Просмотров: 807
File 53 Просмотров: 638
File 54 Просмотров: 616
File 55 Просмотров: 689
File 56 Просмотров: 755
File 57 Просмотров: 591
File 58 Просмотров: 736
File 59 Просмотров: 689
File 60 Просмотров: 1192

Комментарии

Чтобы написать комментарии вам нужно войти в систему или зарегистрироваться



Заявка на расчет