По разделам

 

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


Дан файл целых чисел. Продублировать в нем все числа, принадлежащие диапазону 5–10.

Код (Python)

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

def GenerateNumbers(fname):
    N = random.randint(0,20)
    print("N = ",N)
    try:
        f = open(fname, "w")
        for i in range(0,N):
            x = random.randrange(1,10)
            #x = i + 1
            line = str(x)+"\n"
            f.write(line)
        f.close()
    except:
        print("Error: ", sys.exc_info()[0])

f_input = "file39_in.txt"
f_output = "file39_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 line in f_in:
            f_out.write(line)
            x = int(line)
            if x >= 5 and x <= 10:
                f_out.write(line)

except:
    print("Error: ", sys.exc_info())
									

Код (Pascal)

program File39;
var
 S:String;
 F_in,F_out: File of Integer;
 El,i:integer;

begin
  Write('File1: ');
  Readln(S);
  Assign(F_in,S);
  Assign(F_out,'~'+S);
  ReWrite(F_out);
  Reset(F_in);
  i:=1;
  while not eof(F_in) do
   begin
    Read(F_in,El);
    Write(F_out,El);
    if (5 <= i) and (i <= 10) then Write(F_out,El);
    inc(i);
   end;
  Close(F_in);
  Close(F_out);
  Erase(F_in);
  Rename(F_out,S);
end.
									




File. Абрамян
File 1 Просмотров: 4640
File 2 Просмотров: 3921
File 3 Просмотров: 1866
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 Просмотров: 936
File 19 Просмотров: 810
File 20 Просмотров: 989
File 21 Просмотров: 840
File 22 Просмотров: 1011
File 23 Просмотров: 869
File 24 Просмотров: 867
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 Просмотров: 689
File 56 Просмотров: 754
File 57 Просмотров: 587
File 58 Просмотров: 736
File 59 Просмотров: 688
File 60 Просмотров: 1190

Комментарии

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



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