git rebase --continue
git rebase --abort
(
set /p "s1="
set /p "s2="
set /p "s3="
) <input.txt
more
:more +3 input.txt >>output.txt
more +3 <input.txt >>output.txt
(
set /p "s1="
set /p "s2="
set /p "s3="
echo !s3!
echo !s2!
echo !s1!
more
) <input.txt >output.txt
del input.txt
ren output.txt input.txt
more
find /v ""
цифра три на левой части дисплея имеет код 9Е и чтобы вывести результат сложения 1 + 2 мне надо 3 как-то преобразовать в 9Е
0xfa, 0x0a, 0xb6, 0x9e, 0x4e, 0xdc, 0xfc, 0x8a, 0xfe, 0xde
. #include <iostream>
#include <vector>
using namespace std;
int getInfo(const char* message) {
int value = 0;
cout << message;
cin >> value;
return value;
};
int weightLoss(int normal_weight, int weight) { // здесь мы просто определяем на сколько нужно "похудеть"
int result = normal_weight - weight;
return result;
};
int main() {
cout << "Это программа для опреределения, нужно ли вам похудеть." << endl;
int normal_weight = getInfo("Введите оптимальный ваш вес в кг: ");
int weight = getInfo("Введите нынешний вес в кг: ");
if (weight > normal_weight) {
int result = weightLoss(normal_weight, weight);
cout << "Вам необходимо похудеть на " << result << " кг";
};
};
#include<iostream>
#include<clocale>
#include<iomanip>
using namespace std;
#define COLS 4
int main(int argc, char** argv)
{
setlocale(LC_ALL, "Ukrainian");
int w[][COLS] = {
{1, 3, -8, 0},
{-4, 6, 2, -5},
{3, 7, 0, 6},
{-3, 9, 11, -2}
};
cout << "Поточна матриця\n";
for (int i{0}; i < COLS; ++i)
{
for (int j{0}; j < COLS; ++j)
cout<< showpos <<w[i][j]<< setw(5);
cout << '\n';
}
cout << "\nПеретворена матриця\n";
for (int i{0}; i < COLS; ++i)
{
for (int j{0}; j < COLS; ++j)
{
if (w[i][j]>0 && w[i][j] < 6)
w[i][j] = 0;
cout<< showpos <<w[i][j]<< setw(5);
}
cout << '\n';
}
return 0;
}
static void update_callback(char **ptr)
{
*ptr = (char *)malloc(sizeof(char) * TEST_STR_SIZE + 1);
...
Адрес подсети и адрес роутера от которого идет эта сеть - это одно и тоже?
Адрес сети - это вообще IPадрес или это просто номер?
Под что уходят адреса 192.168.1.0 и 192.168.1.255 и 192.168.1.256 при маске 255.255.255.0
error C2835: user-defined conversion 'operator`double'' takes no formal parameters
operator double (int limit)
невозможна. Вторая ошибка -- это следствие первой.Определим в объекте Group две функции с одинаковым именем, например double Age(); и double Age(int limit);.