По разделам

 

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


Дано вещественное число B, целое число N и набор из N вещественных чисел, упорядоченных по возрастанию. Вывести элементы
набора вместе с числом B, сохраняя упорядоченность выводимых чисел.

Код (C/C++)

#include <stdio.h>
int main(void)
{
    int n;
    float b,r=1.0;
    printf("N:");
    scanf("%i", &n);
    printf("B:");
    scanf("%f", &b);
    int i,f=1;
    for (i=1; i<=n; ++i){
        printf(">");
        scanf("%f", &r);
        if ((b<=r)&&f){
            printf("%f\n",b);
            f=0;
        }
        printf("%f\n", r);
 
    }
    return 0;
}

Код (Python)

import random

B = random.randrange(1,10)
print("B = ",B)
N = random.randrange(1,20)
print("N = ",N)

for i in range(1,N+1):
    print(i,end="; ")

print()
flag = True
for i in range(1,N+1):
    print(i,end="; ")
    if i <= B and B <= i+1 and flag:
        print("B:",B,end="; ")
        flag = False
									

Код (Pascal)

program Series17;
var
n,i,c:integer;// c - check выводилось ли b
b,num:real;
begin
  Write('N:');
  read(n);
  Write('B:');
  read(b);
  c:=0;// число b пока не выводили
  for i:=1 to n do
    begin
    Write('Num:');
    readln(num);
    if (c=0)and(b<num) then
      begin
      writeln(b);
      c:=1;//число b уже вывели
      end;
    writeln(num);
    end;
  if c=0 then write(b);//если b самое старшее - цикл закончен, но с=0
end.
									




Series. Абрамян
Series 1 Просмотров: 4443
Series 2 Просмотров: 2268
Series 3 Просмотров: 2036
Series 4 Просмотров: 2218
Series 5 Просмотров: 2092
Series 6 Просмотров: 2674
Series 7 Просмотров: 2934
Series 8 Просмотров: 3228
Series 9 Просмотров: 1914
Series 10 Просмотров: 2365
Series 11 Просмотров: 1776
Series 12 Просмотров: 2131
Series 13 Просмотров: 1557
Series 14 Просмотров: 1448
Series 15 Просмотров: 1736
Series 16 Просмотров: 2146
Series 17 Просмотров: 1956
Series 18 Просмотров: 2784
Series 19 Просмотров: 2489
Series 20 Просмотров: 1541
Series 21 Просмотров: 1711
Series 22 Просмотров: 1655
Series 23 Просмотров: 2055
Series 24 Просмотров: 1887
Series 25 Просмотров: 1454
Series 26 Просмотров: 1290
Series 27 Просмотров: 1223
Series 28 Просмотров: 1171
Series 29 Просмотров: 1192
Series 30 Просмотров: 1231
Series 31 Просмотров: 1186
Series 32 Просмотров: 1704
Series 33 Просмотров: 979
Series 34 Просмотров: 1027
Series 35 Просмотров: 1406
Series 36 Просмотров: 1516
Series 37 Просмотров: 948
Series 38 Просмотров: 1268
Series 39 Просмотров: 898
Series 40 Просмотров: 1243

Комментарии

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



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