паскаль ))составить программу, которая по дню выводит время приёма врача Дни недели Часы приёма Понедельник, вторник 8.30-14.30 Среда, четверг 13.00-19.00 Пятница 11.30-17.30 суббота 9.30-13.30 воскресенье Приёма нет
// PascalABC.NET 3.2, сборка 1353 от 27.11.2016 // Внимание! Если программа не работает, обновите версию!
begin var a:=ReadArrReal(12).Select(x->real(x)).ToArray; Writeln('Тип массива ',a.GetType); Writeln('Максимальное нечетное: ',a.Where(x->Trunc(x).IsOdd).Max) end.
Пример 13 10 22 31 22 6 18 5 26 3 8 24 Тип массива System.Double[] Максимальное нечетное: 31
// PascalABC.NET 3.2, сборка 1353 от 27.11.2016 // Внимание! Если программа не работает, обновите версию!
begin var c:=new Char[10]; for var i:=0 to 9 do c[i]:=ReadlnChar; var c1:=c[9]; var c2:=c[8]; c:=c.Where(a->(a<>c1) and (a<>c2)).ToArray; c.Println(',') end.
// Внимание! Если программа не работает, обновите версию!
begin
var a:=ReadArrReal(12).Select(x->real(x)).ToArray;
Writeln('Тип массива ',a.GetType);
Writeln('Максимальное нечетное: ',a.Where(x->Trunc(x).IsOdd).Max)
end.
Пример
13 10 22 31 22 6 18 5 26 3 8 24
Тип массива System.Double[]
Максимальное нечетное: 31
// PascalABC.NET 3.2, сборка 1353 от 27.11.2016
// Внимание! Если программа не работает, обновите версию!
begin
var c:=new Char[10];
for var i:=0 to 9 do c[i]:=ReadlnChar;
var c1:=c[9];
var c2:=c[8];
c:=c.Where(a->(a<>c1) and (a<>c2)).ToArray; c.Println(',')
end.
Пример
а
п
е
л
ь
с
и
н
е
ь
а,п,л,с,и,н
С++20
#include <iostream>#include <vector>class Point {public: int x, y; Point() = default; Point(const Point &) = default; Point(int _x, int _y) : x(_x), y(_y) {} Point operator + (const Point& p) const { return Point {x + p.x, y + p.y}; } Point operator - (const Point& p) const { return Point {x - p.x, y - p.y}; } std::vector<Point> operator & (const Point& p) const { return std::vector<Point> { Point {x + p.x, y + p.y}, Point {x - p.x, y + p.y}, Point {x + p.x, y - p.y}, Point {x - p.x, y - p.y}, Point {x + p.y, y + p.x}, Point {x - p.y, y + p.x}, Point {x + p.y, y - p.x}, Point {x - p.y, y - p.x}, }; } static Point max (const Point& p1, const Point& p2) { return Point {std::max(p1.x, p2.x), std::max(p1.y, p2.y)}; } static Point min (const Point& p1, const Point& p2) { return Point {std::min(p1.x, p2.x), std::min(p1.y, p2.y)}; } [[nodiscard]] int distance_to_by_ch (const Point & p) const { return std::max(std::abs(p.x - x), std::abs(p.y - y)); } [[nodiscard]] int distance_to_by_m (const Point & p) const { return std::abs(p.x - x) + std::abs(p.y - y); } friend std::ostream &operator << (std::ostream &os, Point const &p) { return os << "(" << p.x << ";" << p.y << ")"; } Point & operator = (const Point &) = default; bool operator == (const Point & p) const { return x == p.x && y == p.y; }};class Horse {public: const Point p; explicit Horse (const Point position) : p(position) { } [[nodiscard]] bool can_I_kill_this_guy (const Point & m) const { auto field = p & Point{2, 3}; return std::find(field.begin(), field.end(), m) != field.end(); }};std::istream &to_number(std::istream &stream) { char ch; do { ch = stream.get(); } while (!isalpha(ch)); if (isupper(ch)) ch -= 16; else ch -= 48; stream.putback(ch); return stream;}int main () { Point horse_p{}, stranger_p{}; std::cin >> horse_p.x >> to_number >> horse_p.y; std::cin >> stranger_p.x >> to_number >> stranger_p.y; Horse jack(horse_p); std::cout << "I am a Horse placed on " << jack.p << ". " << "Can I kill those guy on " << stranger_p << "? " << "-> " << std::boolalpha << jack.can_I_kill_this_guy(stranger_p); }