#include <iostream>
void reverse(int *a, const int x, const int y) {
int i = x + 1;
int j = y - 1;
int tmp = 0;
while(i < j) {
tmp = a[i];
a[i] = a[j];
a[j] = tmp;
i++;
j--;
}
}
int main() {
int a[] = {16, 8, 3, 5, 2021, 2016, 1, 500, 15, 8, 7, 1914, 27};
// Here we output the source array
for(auto elt: a) {
std::cout << elt << ' ';
}
// Delimiter for arrays
std::cout << '\n';
reverse(a, 0, 5);
// Here we output the changed array
for(auto elt: a) {
std::cout << elt << ' ';
}
return 0;
}
16 8 3 5 2021 2016 1 500 15 8 7 1914 27
16 2021 5 3 8 2016 1 500 15 8 7 1914 27
#include <cstdlib>
int main() {
std::system("start C:\\Folder\\proga.exe");
return 0;
}
#include <iostream>
#include <vector>
#include <Windows.h>
using namespace std;
class Animal {
string name;
string gender;
int age;
public:
// Default constructor
Animal() {
name = "";
gender = "";
age = 0;
}
// Constructor which can be called when creating an object
Animal(string n, string g, int a) {
name = n;
gender = g;
age = a;
}
void set(string n, string g, int a) {
name = n;
gender = g;
age = a;
}
void const print() {
cout << "Животное: " << name << endl << "Пол: " << gender << endl << "Возраст: " << age << endl;
}
};
int main() {
SetConsoleCP(1251);
SetConsoleOutputCP(1251);
setlocale(LC_ALL, "Russian");
/* Creating a vector container and adding an object by calling the constructor of the Animal class and calling the container-vector method */
vector <Animal> animals;
animals.push_back(Animal("dog", "male", 3));
// Creating an object and calling the set method
Animal cat;
cat.set("cat", "male", 1);
animals.push_back(cat);
// Content of vector
for(auto animal: animals) {
animal.print();
cout << "" << endl;
}
return 0;
}
#include <iostream>
#include <vector>
#include <Windows.h>
using namespace std;
class Animal {
string name;
string gender;
int age;
public:
// Default constructor
Animal() {
name = "";
gender = "";
age = 0;
}
void set(string n, string g, int a) {
name = n;
gender = g;
age = a;
}
void const print() {
cout << "Животное: " << name << endl << "Пол: " << gender << endl << "Возраст: " << age << endl;
}
};
int main() {
SetConsoleCP(1251);
SetConsoleOutputCP(1251);
setlocale(LC_ALL, "Russian");
vector <Animal> animals(3);
animals[0].set("dog", "male", 3);
animals[1].set("cat", "male", 1);
animals[2].set("pig", "female", 5);
// Content of vector
for(auto animal: animals) {
animal.print();
cout << "" << endl;
}
return 0;
}
const items = document.getElementsByClassName("item");
const tmp = items[0].innerHTML;
items[0].innerHTML = items[4].innerHTML;
items[4].innerHTML = tmp;
innerText
или textContent
const s = "Это какой-то текст {{param1}} дорогие пупсики {{param2}} и нужно из него {{param3}} выдернуть параметры";
console.log(s.match(/\{\{[a-z]+(\d+)?\}\}/g));
#include <stdio.h>
#include <string.h>
int main() {
char str[] = "soroto*11414*parapa*alfjjF*";
char *ptr = str;
while(*ptr) {
if(*ptr == '*') {
if(*(ptr-1) >= 'a' && *(ptr-1) <= 'z' || *(ptr-1) >= 'A' && *(ptr-1) <= 'Z') {
*(ptr-1) = '.';
}
}
ptr++;
}
printf(str);
return 0;
}
#include <stdio.h>
#include <string.h>
int main() {
int count, cost, period;
FILE *S1;
printf("Летняя резина. Количество - ");
scanf("%i", &count);
printf("Цена - ");
scanf("%i", &cost);
printf("срок хранения - ");
scanf("%i", &period);
int count1, cost1, period1;
printf("Диски. Количество - ");
scanf("%i", &count1);
printf("Цена - ");
scanf("%i", &cost1);
printf("срок хранения - ");
scanf("%i", &period1);
S1 = fopen("S1.txt", "w");
if(period > 12)
fprintf(S1,"Летняя резина. \nКоличество - %i\nЦена - %i\nсрок хранения - %i\n", count, cost, period);
if(period1 > 12)
fprintf(S1,"\nДиски. \nКоличество - %i\nЦена - %i\nсрок хранения - %i\n", count1, cost1, period1);
int item = count + count1;
int sum = count * cost + count1 * cost1;
if(cost >= 1000 && cost1 >= 1000)
fprintf(S1, "\nСумма - %d, стоимость - %i", item, sum);
fclose(S1);
return 0;
}
BOT_CONFIG = {
'intents': {
'hello': {
'examples': ['Привет', 'Добрый день', 'Добрый вечер', 'Шалом','Приветики','Здраствуйте'],
'responses': ['Привет, человек', 'Здраствуйте']
},
'bye': {
'exampeles': ['Пока', 'Досвидания', 'До свидания', 'Прощайте'],
'responses': ['Еще увидимся', 'Если что, я тут']
},
},
'failure_phrases': [
'Не понятно. Перефразируй, пожайлуста',
'Я еще только учусь. Не умею на такое отвечать',
]
}
let b8 = [3, 14, 15, 92, "6", "5", "hello", 32];
function t8(arr) {
b8_res = [];
arr.filter((num, index) => {
if(Number.isInteger(num) && num % 2 === 0)
b8_res.push(index);
});
return b8_res;
}
console.log(t8(b8)); // [1, 3, 7]
void getValues(Properties* objectValues);
.Properties obj;
Properties* objectValues = new Properties;
objectValues->getValues(&obj);
#include <iostream>
class Properties
{
public:
void getValues();
int a = 13;
int b = 82;
float c = 27.01f;
};
void Properties::getValues()
{
std::cout << a << std::endl;
}
int main()
{
setlocale(0, "");
Properties* ptr = new Properties;
ptr->getValues();
std::cin.get();
return 0;
}
#include <iostream>
class Properties
{
public:
void getValues();
int a = 13;
int b = 82;
float c = 27.01f;
};
void Properties::getValues()
{
std::cout << a << std::endl;
}
int main()
{
setlocale(0, "");
Properties obj;
obj.getValues();
std::cin.get();
return 0;
}
const chunk = (a, n) => [...Array(Math.ceil(a.length / n))].map((_, i) => a.slice(n * i, n + n * i));
let arr2 = chunk([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12], 6);
console.log(arr2);
arr2.forEach(item => console.log(item[0]));