-
Notifications
You must be signed in to change notification settings - Fork 0
/
ДЗ50.cpp
44 lines (33 loc) · 1.17 KB
/
ДЗ50.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
// ConsoleApplication125.cpp : Этот файл содержит функцию "main". Здесь начинается и заканчивается выполнение программы.
//
#include <iostream>
#include <vector>
#include <string>
using namespace std;
int main() {
auto add = [](int a, int b) { return a + b; };
auto square = [](int x) { return x * x; };
auto isEven = [](int x) { return x % 2 == 0; };
auto sum = [](const vector<int>& vec) {
int result = 0;
for (int num : vec) {
result += num;
}
return result;
};
auto printMessage = [](const string& message) {
cout << message << endl;
};
auto isPalindrome = [](const string& str) {
for (size_t i = 0; i < str.size() / 2; ++i) {
if (str[i] != str[str.size() - 1 - i]) {
return false;
}
}
return true;
};
auto multiply = [](int a, int b) { return a * b; };
auto greet = [](const string& name) { cout << "Hello, " << name << "!" << endl; };
auto isPositive = [](int x) { return x > 0; };
return 0;
}