По разделам

 

Решение задачи Series 4


Дано целое число N и набор из N вещественных чисел. Вывести
сумму и произведение чисел из данного набора.

Код (C/C++)

#include <bits/stdc++.h>
using namespace std;

int main() {
	srand((int)time(0));
	int N = rand() % 10 + 1;
	cout << "N = " << N << endl;
	
	double s = 0.0, p = 1.0;
	float x;
	for(int i = 0; i < N; i++) {
		x = rand() % 10 + 1;
		cout << x << " ";
		//cin >> x;
		s += x;
		p *= x;
	}
	
	cout << endl;
	cout << "Sum = " << s << endl;
	cout << "Product = " << p << endl;

	return 0;
}

Код (Python)

import random

N = 5
s = 0
p = 1
for i in range(N):
    x = random.randrange(1,6)
    #x = random.uniform(1, 10)
    print(x, end="; ")
    s += x
    p *= x
print()
print('Sum = ', s)
print('Product = ', p)
									

Код (Pascal)

program Series4;
var
  R,Sum,Pro:Real;
  i,N:Integer;
begin
  Sum:=0;
  Pro:=1;
  Write('Введите N: ');
  Readln(N);
  for i:=1 to N do
   begin
     Write('Введите ',i,' число: ');
     Readln(R);
     Sum:=Sum+R;
     Pro:=Pro*R;
   end;
  Writeln(Sum,' ',Pro);
end.
									




Series. Абрамян
Series 1 Просмотров: 4448
Series 2 Просмотров: 2276
Series 3 Просмотров: 2038
Series 4 Просмотров: 2222
Series 5 Просмотров: 2096
Series 6 Просмотров: 2679
Series 7 Просмотров: 2938
Series 8 Просмотров: 3229
Series 9 Просмотров: 1915
Series 10 Просмотров: 2368
Series 11 Просмотров: 1783
Series 12 Просмотров: 2136
Series 13 Просмотров: 1560
Series 14 Просмотров: 1452
Series 15 Просмотров: 1743
Series 16 Просмотров: 2148
Series 17 Просмотров: 1961
Series 18 Просмотров: 2787
Series 19 Просмотров: 2494
Series 20 Просмотров: 1545
Series 21 Просмотров: 1713
Series 22 Просмотров: 1657
Series 23 Просмотров: 2058
Series 24 Просмотров: 1891
Series 25 Просмотров: 1458
Series 26 Просмотров: 1297
Series 27 Просмотров: 1227
Series 28 Просмотров: 1171
Series 29 Просмотров: 1194
Series 30 Просмотров: 1233
Series 31 Просмотров: 1189
Series 32 Просмотров: 1707
Series 33 Просмотров: 981
Series 34 Просмотров: 1030
Series 35 Просмотров: 1408
Series 36 Просмотров: 1520
Series 37 Просмотров: 951
Series 38 Просмотров: 1272
Series 39 Просмотров: 900
Series 40 Просмотров: 1249

Комментарии

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



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