По разделам

 

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


Дан файл вещественных чисел. Заменить в нем все элементы на их квадраты.

Код (Python)

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

def GenerateReals(fname):
    N = random.randint(2,15)
    print("N = ",N)
    L = []
    x = round(random.uniform(0, 10),1)
    L.append(x)
    for i in range(1,N):
        lst_rnd = [round(random.uniform(0, 10),1) for _ in range(0,10)]
        try:
            lst_rnd.remove(x)
        except:
            pass
        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)


file1 = "file25.txt"
GenerateReals(file1)
print("Read from:",file1)

try:
    #file for temporary data
    N = random.randrange(5,8)
    S = ''.join(random.choice(string.ascii_lowercase + string.ascii_uppercase \
        + string.digits) for _ in range(N))
    temp_file = "temp_" + S + ".txt"
    #print()
    print("Temp file:",temp_file)

    with open(file1, 'r') as f_in, open(temp_file, 'w') as f_out:
        for line in f_in:
            x = float(line.strip())
            y = x * x
            print("%1.1f : %2.2f" % (x, y))
            #print(x,":",y)
            s = str("%2.2f" % y)+'\n'
            f_out.write(s)

    #sys.exit()

    with open(file1, 'w') as f_out, open(temp_file, 'r') as f_in:
        for line in f_in:
            f_out.write(line)

    try:
        os.remove(temp_file)
    except OSError as e:
        print("\nError:", e)

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

Код (Pascal)

program File25;
var
 S:String;
 F_in,F_temp: File of Real;
 temp:Real;
begin
  Write('File: ');
  Readln(S);
  Assign(F_in,S);
  Reset(F_in);
  Assign(F_temp,'~'+S);
  ReWrite(F_temp);
  while (not eof(F_in)) do
   begin
    Read(F_in,temp);
    temp:=sqr(temp);
    Write(F_temp,temp);
   end;
  Close(F_in);
  Close(F_temp);
  Erase(F_in);
  Rename(F_temp,S);
end.
									




File. Абрамян
File 1 Просмотров: 4599
File 2 Просмотров: 3881
File 3 Просмотров: 1822
File 4 Просмотров: 2277
File 5 Просмотров: 1763
File 6 Просмотров: 1568
File 7 Просмотров: 1373
File 8 Просмотров: 1833
File 9 Просмотров: 1087
File 10 Просмотров: 1602
File 11 Просмотров: 1112
File 12 Просмотров: 1254
File 13 Просмотров: 1097
File 14 Просмотров: 976
File 15 Просмотров: 883
File 16 Просмотров: 1130
File 17 Просмотров: 1312
File 18 Просмотров: 906
File 19 Просмотров: 776
File 20 Просмотров: 958
File 21 Просмотров: 815
File 22 Просмотров: 978
File 23 Просмотров: 839
File 24 Просмотров: 835
File 25 Просмотров: 893
File 26 Просмотров: 871
File 27 Просмотров: 739
File 28 Просмотров: 992
File 29 Просмотров: 756
File 30 Просмотров: 838
File 31 Просмотров: 740
File 32 Просмотров: 778
File 33 Просмотров: 850
File 34 Просмотров: 857
File 35 Просмотров: 650
File 36 Просмотров: 745
File 37 Просмотров: 629
File 38 Просмотров: 700
File 39 Просмотров: 718
File 40 Просмотров: 630
File 41 Просмотров: 682
File 42 Просмотров: 842
File 43 Просмотров: 624
File 44 Просмотров: 630
File 45 Просмотров: 693
File 46 Просмотров: 604
File 47 Просмотров: 728
File 48 Просмотров: 851
File 49 Просмотров: 744
File 50 Просмотров: 778
File 51 Просмотров: 757
File 52 Просмотров: 772
File 53 Просмотров: 609
File 54 Просмотров: 587
File 55 Просмотров: 662
File 56 Просмотров: 727
File 57 Просмотров: 560
File 58 Просмотров: 708
File 59 Просмотров: 664
File 60 Просмотров: 1167

Комментарии

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



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