Пусть пользователь вводит числа через пробел.
С# 8.0:
using System;
using System.Linq;
using System.Collections.Generic;
...
var Arr =
Array.ConvertAll(Console.ReadLine().Split(' '), double.Parse).
Select(x=> Math.Round(x+273.15));
foreach(var i in Arr) Console.Write(i + " ");
Пример ввода: 5 -2 7 12 0 -17 -5 6
Пример вывода: 278 271 280 285 273 256 268 279
PascalABC.NET
begin
var N := ReadInteger('N = ');
assert((1<=N)and(N<=31));
var mas := ReadArrInteger(N);
foreach x: integer in mas do
Println(Round(x+273.15));
end.
Copyright © 2025 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Пусть пользователь вводит числа через пробел.
С# 8.0:
using System;
using System.Linq;
using System.Collections.Generic;
...
var Arr =
Array.ConvertAll(Console.ReadLine().Split(' '), double.Parse).
Select(x=> Math.Round(x+273.15));
foreach(var i in Arr) Console.Write(i + " ");
Пример ввода: 5 -2 7 12 0 -17 -5 6
Пример вывода: 278 271 280 285 273 256 268 279
PascalABC.NET
begin
var N := ReadInteger('N = ');
assert((1<=N)and(N<=31));
var mas := ReadArrInteger(N);
foreach x: integer in mas do
Println(Round(x+273.15));
end.