По разделам

 

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


Даны три файла целых чисел одинакового размера с именами SA, SB, SC и строка SD. Создать новый файл с именем SD, в котором чередовались бы элементы исходных файлов с одним и тем же номером: A1, B1, C1, A2, B2, C2, ... .

Код (Python)

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

lst_file = ["file48_1.txt", "file48_2.txt", "file48_3.txt", "file48_4.txt"]
f_output = "file48_all.txt"

try:
    f_in = []
    for f_input in lst_file:
        f_in.append(open(f_input, "r"))

    flag = True
    with open(f_output, "w") as f_out:
        while flag:
            for f in f_in:
                line = f.readline()
                if not line:
                    flag = False
                    break
                print(line)
                f_out.write(line.strip()+"\n")

    for f in f_in:
        f.close()
        
except:
    print("Error: ", sys.exc_info())
									

Код (Pascal)

program File48;
var
 SA,SB,SC,SD: String;
 FA,FB,FC,FD :File of Integer;
 El:Integer;
begin
  Write('SA: ');
  Readln(SA);
  Write('SB: ');
  Readln(SB);
  Write('SC: ');
  Readln(SC);
  Write('SD: ');
  Readln(SD);
  Assign(FA,SA);
  Reset(FA);
  Assign(FB,SB);
  Reset(FB);
  Assign(FC,SC);
  Reset(FC);
  Assign(FD,SD);
  Rewrite(FD);
  while not Eof(FA) do
   begin
    Read(FA,El);
    Write(FD,El);
    Read(FB,El);
    Write(FD,El);
    Read(FC,El);
    Write(FD,El);
   end;
  Close(FA);
  Close(FB);
  Close(FC);
  Close(FD);
end.
									




File. Абрамян
File 1 Просмотров: 4642
File 2 Просмотров: 3922
File 3 Просмотров: 1867
File 4 Просмотров: 2379
File 5 Просмотров: 1792
File 6 Просмотров: 1596
File 7 Просмотров: 1405
File 8 Просмотров: 1863
File 9 Просмотров: 1114
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 Просмотров: 1012
File 23 Просмотров: 871
File 24 Просмотров: 868
File 25 Просмотров: 923
File 26 Просмотров: 900
File 27 Просмотров: 763
File 28 Просмотров: 1018
File 29 Просмотров: 786
File 30 Просмотров: 865
File 31 Просмотров: 769
File 32 Просмотров: 805
File 33 Просмотров: 873
File 34 Просмотров: 880
File 35 Просмотров: 674
File 36 Просмотров: 768
File 37 Просмотров: 651
File 38 Просмотров: 732
File 39 Просмотров: 747
File 40 Просмотров: 654
File 41 Просмотров: 705
File 42 Просмотров: 870
File 43 Просмотров: 649
File 44 Просмотров: 660
File 45 Просмотров: 717
File 46 Просмотров: 629
File 47 Просмотров: 758
File 48 Просмотров: 878
File 49 Просмотров: 769
File 50 Просмотров: 800
File 51 Просмотров: 782
File 52 Просмотров: 806
File 53 Просмотров: 637
File 54 Просмотров: 616
File 55 Просмотров: 689
File 56 Просмотров: 754
File 57 Просмотров: 590
File 58 Просмотров: 736
File 59 Просмотров: 689
File 60 Просмотров: 1192

Комментарии

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



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