По разделам

 

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


Даны два файла одного и того же типа. Добавить к первому файлу содержимое второго файла, а ко второму файлу — содержимое первого.

Код (Python)

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

file1 = "file47_1.txt"
file2 = "file47_2.txt"

try:
    with open(file1, "rb") as f_in:
        data1 = f_in.read()

    with open(file2, "rb") as f_in:
        data2 = f_in.read()
                
    with open(file1, "ab") as f_out:
        f_out.write(data2)
                
    with open(file2, "ab") as f_out:
        f_out.write(data1)
                
except:
    print("Error: ", sys.exc_info())
									

Код (Pascal)

program File47;
var
 N,i:Integer;
 Buf : Char;
 Name1,Name2: String;
 F1,F2,F_temp :File;
begin
  Write('File1: ');
  Readln(Name1);
  Write('File2: ');
  Readln(Name2);
  Assign(F1,Name1);
  Rename(F1,'~'+Name1);
  Assign(F2,Name2);
  Rename(F2,'~'+Name2);
  Assign(F_temp,Name1);
  Reset(F2,1);
  Reset(F1,1);
  ReWrite(F_temp,1);
  while not Eof(F1) do
   begin
    BlockRead(F1, Buf, SizeOf(char));
    BlockWrite(F_temp, Buf, sizeof(char));
   end;
  while not Eof(F2) do
   begin
    BlockRead(F2, Buf, SizeOf(char));
    BlockWrite(F_temp, Buf, sizeof(char));
   end;
   Close(F_temp);
   seek(F1,0);
   seek(F2,0);
  Assign(F_temp,Name2);
  ReWrite(F_temp,1);
  while not Eof(F2) do
   begin
    BlockRead(F2, Buf, SizeOf(char));
    BlockWrite(F_temp, Buf, sizeof(char));
   end;
  while not Eof(F1) do
   begin
    BlockRead(F1, Buf, SizeOf(char));
    BlockWrite(F_temp, Buf, sizeof(char));
   end;
  Close(F_temp);
  Close(F1);
  Close(F2);
  erase(F1);
  erase(F2);
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 Просмотров: 757
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

Комментарии

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



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