По разделам

 

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


Дан файл вещественных чисел. Найти сумму его элементов с четными номерами.

Код (Python)

import random
import numpy

def EmptyFile(fname):
    open(fname, 'w').close()
    
def GenerateLine(fname):
    EmptyFile(f_source)
    N = random.randrange(1,20)
    line = ""
    L = []
    for i in range(N):
        x = format(random.uniform(-10,10),'.1f')
        L.append(x)
        line = "; ".join(L)
    try:
        f = open(fname, "w")
        try:
            f.write(line)
        finally:
            f.close()
    except IOError:
        print('Write error: ',fname)
    print(line)

f_source = "file14_source.txt"
GenerateLine(f_source)

try:
    with open(f_source,'r') as f:
        lines = f.readlines()
        l_float = []
        print(lines)
        for line in reversed(lines):
            for i in line.split("; "):
                l_float.append(float(i))
        print(l_float)
        x = numpy.mean(l_float)
        print("Mean:",format(x,'.3f'))

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

Код (Pascal)

program File15;
var
 S:String;
 F_in: File of Real;
 Sum,temp:real;
 i:integer;
begin
  Write('File: ');
  Readln(S);
  Assign(F_in,S);
  Reset(F_in);
  i:=1;
  Sum:=0;
  while (not eof(F_in)) do
   begin
    Read(F_in,temp);
    if (i mod 2 = 0) then Sum:=Sum+temp;
    inc(i);
   end;
  Writeln(Sum);
  Close(F_in);
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 Просмотров: 1632
File 11 Просмотров: 1143
File 12 Просмотров: 1290
File 13 Просмотров: 1120
File 14 Просмотров: 1008
File 15 Просмотров: 912
File 16 Просмотров: 1154
File 17 Просмотров: 1338
File 18 Просмотров: 937
File 19 Просмотров: 811
File 20 Просмотров: 990
File 21 Просмотров: 841
File 22 Просмотров: 1011
File 23 Просмотров: 870
File 24 Просмотров: 868
File 25 Просмотров: 922
File 26 Просмотров: 900
File 27 Просмотров: 762
File 28 Просмотров: 1017
File 29 Просмотров: 786
File 30 Просмотров: 864
File 31 Просмотров: 768
File 32 Просмотров: 805
File 33 Просмотров: 872
File 34 Просмотров: 879
File 35 Просмотров: 673
File 36 Просмотров: 767
File 37 Просмотров: 650
File 38 Просмотров: 731
File 39 Просмотров: 747
File 40 Просмотров: 654
File 41 Просмотров: 704
File 42 Просмотров: 870
File 43 Просмотров: 648
File 44 Просмотров: 659
File 45 Просмотров: 716
File 46 Просмотров: 628
File 47 Просмотров: 757
File 48 Просмотров: 877
File 49 Просмотров: 769
File 50 Просмотров: 800
File 51 Просмотров: 781
File 52 Просмотров: 805
File 53 Просмотров: 636
File 54 Просмотров: 616
File 55 Просмотров: 689
File 56 Просмотров: 754
File 57 Просмотров: 588
File 58 Просмотров: 736
File 59 Просмотров: 688
File 60 Просмотров: 1191

Комментарии

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



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