создано из Nikita_Mikhailov/lab01
Сommit
d4d0389427
@ -0,0 +1,34 @@
|
|||||||
|
# ---> C++
|
||||||
|
# Prerequisites
|
||||||
|
*.d
|
||||||
|
|
||||||
|
# Compiled Object files
|
||||||
|
*.slo
|
||||||
|
*.lo
|
||||||
|
*.o
|
||||||
|
*.obj
|
||||||
|
|
||||||
|
# Precompiled Headers
|
||||||
|
*.gch
|
||||||
|
*.pch
|
||||||
|
|
||||||
|
# Compiled Dynamic libraries
|
||||||
|
*.so
|
||||||
|
*.dylib
|
||||||
|
*.dll
|
||||||
|
|
||||||
|
# Fortran module files
|
||||||
|
*.mod
|
||||||
|
*.smod
|
||||||
|
|
||||||
|
# Compiled Static libraries
|
||||||
|
*.lai
|
||||||
|
*.la
|
||||||
|
*.a
|
||||||
|
*.lib
|
||||||
|
|
||||||
|
# Executables
|
||||||
|
*.exe
|
||||||
|
*.out
|
||||||
|
*.app
|
||||||
|
|
@ -0,0 +1,3 @@
|
|||||||
|
# lab01
|
||||||
|
|
||||||
|
Репозиторий для первой лабораторной работы по предмету Разработка программного обеспечения систем управления (ИДДО РПОСУ-Б-3-1-ЗаО)
|
@ -0,0 +1,76 @@
|
|||||||
|
#include <iostream>
|
||||||
|
#include <vector>
|
||||||
|
#include <iomanip>
|
||||||
|
#include <algorithm>
|
||||||
|
|
||||||
|
const size_t SCREEN_WIDTH = 80; // Максимальная ширина экрана
|
||||||
|
const size_t MAX_ASTERISK = SCREEN_WIDTH - 4; // Ограничение на длину столбца
|
||||||
|
|
||||||
|
// Функция для ввода данных: количество чисел и сами числа
|
||||||
|
void input_data(std::vector<double>& numbers, size_t& bin_count) {
|
||||||
|
size_t number_count;
|
||||||
|
std::cerr << "Enter number count: ";
|
||||||
|
std::cin >> number_count;
|
||||||
|
|
||||||
|
numbers.resize(number_count);
|
||||||
|
std::cerr << "Enter numbers: ";
|
||||||
|
for (size_t i = 0; i < number_count; ++i) {
|
||||||
|
std::cin >> numbers[i];
|
||||||
|
}
|
||||||
|
|
||||||
|
std::cerr << "Enter bin count: ";
|
||||||
|
std::cin >> bin_count;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Функция для расчета количества чисел в каждой корзине
|
||||||
|
void calculate_bins(const std::vector<double>& numbers, std::vector<size_t>& bins, double& min, double& max) {
|
||||||
|
// Определяем минимальное и максимальное значение для диапазона
|
||||||
|
min = *std::min_element(numbers.begin(), numbers.end());
|
||||||
|
max = *std::max_element(numbers.begin(), numbers.end());
|
||||||
|
|
||||||
|
// Вычисляем размер каждой корзины
|
||||||
|
double bin_size = (max - min) / bins.size();
|
||||||
|
|
||||||
|
// Заполняем корзины, увеличивая счётчик для каждого числа, попадающего в интервал
|
||||||
|
for (const double& number : numbers) {
|
||||||
|
size_t bin_index = static_cast<size_t>((number - min) / bin_size);
|
||||||
|
if (bin_index >= bins.size()) bin_index = bins.size() - 1;
|
||||||
|
bins[bin_index]++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Функция для вывода гистограммы
|
||||||
|
void print_histogram(const std::vector<size_t>& bins) {
|
||||||
|
// Находим максимальное количество чисел в одной корзине для масштабирования
|
||||||
|
size_t max_count = *std::max_element(bins.begin(), bins.end());
|
||||||
|
|
||||||
|
// Проверка необходимости масштабирования
|
||||||
|
bool needs_scaling = max_count > MAX_ASTERISK;
|
||||||
|
|
||||||
|
for (size_t i = 0; i < bins.size(); ++i) {
|
||||||
|
std::cout << std::setw(3) << std::right << bins[i] << "|";
|
||||||
|
|
||||||
|
// Рассчитываем высоту столбца с учётом ограничения MAX_ASTERISK
|
||||||
|
size_t height = needs_scaling ? static_cast<size_t>(MAX_ASTERISK * static_cast<double>(bins[i]) / max_count) : bins[i];
|
||||||
|
|
||||||
|
// Выводим звёздочки для визуализации количества элементов
|
||||||
|
for (size_t j = 0; j < height; ++j) {
|
||||||
|
std::cout << "*";
|
||||||
|
}
|
||||||
|
std::cout << "\n";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
int main() {
|
||||||
|
std::vector<double> numbers; // Массив чисел
|
||||||
|
size_t bin_count; // Количество корзин
|
||||||
|
|
||||||
|
input_data(numbers, bin_count); // Ввод данных
|
||||||
|
|
||||||
|
std::vector<size_t> bins(bin_count, 0); // Инициализируем корзины с нулями
|
||||||
|
double min, max;
|
||||||
|
calculate_bins(numbers, bins, min, max); // Подсчёт чисел в корзинах
|
||||||
|
print_histogram(bins); // Вывод гистограммы
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
@ -0,0 +1,76 @@
|
|||||||
|
#include <iostream>
|
||||||
|
#include <vector>
|
||||||
|
#include <iomanip>
|
||||||
|
#include <algorithm>
|
||||||
|
|
||||||
|
const size_t SCREEN_WIDTH = 80; // Максимальная ширина экрана
|
||||||
|
const size_t MAX_ASTERISK = SCREEN_WIDTH - 4; // Ограничение на длину столбца
|
||||||
|
|
||||||
|
// Функция для ввода данных: количество чисел и сами числа
|
||||||
|
void input_data(std::vector<double>& numbers, size_t& bin_count) {
|
||||||
|
size_t number_count;
|
||||||
|
std::cerr << "Enter number count: ";
|
||||||
|
std::cin >> number_count;
|
||||||
|
|
||||||
|
numbers.resize(number_count);
|
||||||
|
std::cerr << "Enter numbers: ";
|
||||||
|
for (size_t i = 0; i < number_count; ++i) {
|
||||||
|
std::cin >> numbers[i];
|
||||||
|
}
|
||||||
|
|
||||||
|
std::cerr << "Enter bin count: ";
|
||||||
|
std::cin >> bin_count;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Функция для расчета количества чисел в каждой корзине
|
||||||
|
void calculate_bins(const std::vector<double>& numbers, std::vector<size_t>& bins, double& min, double& max) {
|
||||||
|
// Определяем минимальное и максимальное значение для диапазона
|
||||||
|
min = *std::min_element(numbers.begin(), numbers.end());
|
||||||
|
max = *std::max_element(numbers.begin(), numbers.end());
|
||||||
|
|
||||||
|
// Вычисляем размер каждой корзины
|
||||||
|
double bin_size = (max - min) / bins.size();
|
||||||
|
|
||||||
|
// Заполняем корзины, увеличивая счётчик для каждого числа, попадающего в интервал
|
||||||
|
for (const double& number : numbers) {
|
||||||
|
size_t bin_index = static_cast<size_t>((number - min) / bin_size);
|
||||||
|
if (bin_index >= bins.size()) bin_index = bins.size() - 1;
|
||||||
|
bins[bin_index]++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Функция для вывода гистограммы
|
||||||
|
void print_histogram(const std::vector<size_t>& bins) {
|
||||||
|
// Находим максимальное количество чисел в одной корзине для масштабирования
|
||||||
|
size_t max_count = *std::max_element(bins.begin(), bins.end());
|
||||||
|
|
||||||
|
// Проверка необходимости масштабирования
|
||||||
|
bool needs_scaling = max_count > MAX_ASTERISK;
|
||||||
|
|
||||||
|
for (size_t i = 0; i < bins.size(); ++i) {
|
||||||
|
std::cout << std::setw(3) << std::right << bins[i] << "|";
|
||||||
|
|
||||||
|
// Рассчитываем высоту столбца с учётом ограничения MAX_ASTERISK
|
||||||
|
size_t height = needs_scaling ? static_cast<size_t>(MAX_ASTERISK * static_cast<double>(bins[i]) / max_count) : bins[i];
|
||||||
|
|
||||||
|
// Выводим звёздочки для визуализации количества элементов
|
||||||
|
for (size_t j = 0; j < height; ++j) {
|
||||||
|
std::cout << "*";
|
||||||
|
}
|
||||||
|
std::cout << "\n";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
int main() {
|
||||||
|
std::vector<double> numbers; // Массив чисел
|
||||||
|
size_t bin_count; // Количество корзин
|
||||||
|
|
||||||
|
input_data(numbers, bin_count); // Ввод данных
|
||||||
|
|
||||||
|
std::vector<size_t> bins(bin_count, 0); // Инициализируем корзины с нулями
|
||||||
|
double min, max;
|
||||||
|
calculate_bins(numbers, bins, min, max); // Подсчёт чисел в корзинах
|
||||||
|
print_histogram(bins); // Вывод гистограммы
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
@ -0,0 +1,78 @@
|
|||||||
|
#include <iostream>
|
||||||
|
#include <vector>
|
||||||
|
#include <iomanip>
|
||||||
|
#include <algorithm>
|
||||||
|
|
||||||
|
const size_t SCREEN_WIDTH = 80; // Максимальная ширина экрана
|
||||||
|
const size_t MAX_ASTERISK = SCREEN_WIDTH - 6; // Ограничение на длину столбца, с учетом увеличенного места для подписей
|
||||||
|
|
||||||
|
// Функция для ввода данных: количество чисел и сами числа
|
||||||
|
void input_data(std::vector<double>& numbers, size_t& bin_count) {
|
||||||
|
size_t number_count;
|
||||||
|
std::cerr << "Enter number count: ";
|
||||||
|
std::cin >> number_count;
|
||||||
|
|
||||||
|
numbers.resize(number_count);
|
||||||
|
std::cerr << "Enter numbers: ";
|
||||||
|
for (size_t i = 0; i < number_count; ++i) {
|
||||||
|
std::cin >> numbers[i];
|
||||||
|
}
|
||||||
|
|
||||||
|
std::cerr << "Enter bin count: ";
|
||||||
|
std::cin >> bin_count;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Функция для расчета количества чисел в каждой корзине
|
||||||
|
void calculate_bins(const std::vector<double>& numbers, std::vector<size_t>& bins, double& min, double& max) {
|
||||||
|
min = *std::min_element(numbers.begin(), numbers.end());
|
||||||
|
max = *std::max_element(numbers.begin(), numbers.end());
|
||||||
|
|
||||||
|
double bin_size = (max - min) / bins.size();
|
||||||
|
|
||||||
|
for (const double& number : numbers) {
|
||||||
|
size_t bin_index = static_cast<size_t>((number - min) / bin_size);
|
||||||
|
if (bin_index >= bins.size()) bin_index = bins.size() - 1;
|
||||||
|
bins[bin_index]++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Функция для вывода гистограммы с промежуточными границами столбцов
|
||||||
|
void print_histogram(const std::vector<size_t>& bins, double min, double max) {
|
||||||
|
size_t max_count = *std::max_element(bins.begin(), bins.end());
|
||||||
|
bool needs_scaling = max_count > MAX_ASTERISK;
|
||||||
|
double bin_size = (max - min) / bins.size();
|
||||||
|
|
||||||
|
for (size_t i = 0; i < bins.size(); ++i) {
|
||||||
|
// Вывод количества элементов с полем в 6 символов
|
||||||
|
std::cout << std::setw(6) << std::right << bins[i] << "|";
|
||||||
|
|
||||||
|
// Рассчитываем высоту столбца с учетом ограничения MAX_ASTERISK
|
||||||
|
size_t height = needs_scaling ? static_cast<size_t>(MAX_ASTERISK * static_cast<double>(bins[i]) / max_count) : bins[i];
|
||||||
|
|
||||||
|
// Выводим звездочки для визуализации количества элементов
|
||||||
|
for (size_t j = 0; j < height; ++j) {
|
||||||
|
std::cout << "*";
|
||||||
|
}
|
||||||
|
std::cout << "\n";
|
||||||
|
|
||||||
|
// Выводим промежуточные границы между столбцами (исключая первую границу)
|
||||||
|
if (i < bins.size() - 1) {
|
||||||
|
double boundary = min + (i + 1) * bin_size;
|
||||||
|
std::cout << std::fixed << std::setprecision(2) << boundary << "\n";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
int main() {
|
||||||
|
std::vector<double> numbers;
|
||||||
|
size_t bin_count;
|
||||||
|
|
||||||
|
input_data(numbers, bin_count);
|
||||||
|
|
||||||
|
std::vector<size_t> bins(bin_count, 0);
|
||||||
|
double min, max;
|
||||||
|
calculate_bins(numbers, bins, min, max);
|
||||||
|
print_histogram(bins, min, max);
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
@ -0,0 +1,78 @@
|
|||||||
|
#include <iostream>
|
||||||
|
#include <vector>
|
||||||
|
#include <iomanip>
|
||||||
|
#include <algorithm>
|
||||||
|
|
||||||
|
const size_t SCREEN_WIDTH = 80; // Максимальная ширина экрана
|
||||||
|
const size_t MAX_ASTERISK = SCREEN_WIDTH - 6; // Ограничение на длину столбца, с учетом увеличенного места для подписей
|
||||||
|
|
||||||
|
// Функция для ввода данных: количество чисел и сами числа
|
||||||
|
void input_data(std::vector<double>& numbers, size_t& bin_count) {
|
||||||
|
size_t number_count;
|
||||||
|
std::cerr << "Enter number count: ";
|
||||||
|
std::cin >> number_count;
|
||||||
|
|
||||||
|
numbers.resize(number_count);
|
||||||
|
std::cerr << "Enter numbers: ";
|
||||||
|
for (size_t i = 0; i < number_count; ++i) {
|
||||||
|
std::cin >> numbers[i];
|
||||||
|
}
|
||||||
|
|
||||||
|
std::cerr << "Enter bin count: ";
|
||||||
|
std::cin >> bin_count;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Функция для расчета количества чисел в каждой корзине
|
||||||
|
void calculate_bins(const std::vector<double>& numbers, std::vector<size_t>& bins, double& min, double& max) {
|
||||||
|
min = *std::min_element(numbers.begin(), numbers.end());
|
||||||
|
max = *std::max_element(numbers.begin(), numbers.end());
|
||||||
|
|
||||||
|
double bin_size = (max - min) / bins.size();
|
||||||
|
|
||||||
|
for (const double& number : numbers) {
|
||||||
|
size_t bin_index = static_cast<size_t>((number - min) / bin_size);
|
||||||
|
if (bin_index >= bins.size()) bin_index = bins.size() - 1;
|
||||||
|
bins[bin_index]++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Функция для вывода гистограммы с промежуточными границами столбцов
|
||||||
|
void print_histogram(const std::vector<size_t>& bins, double min, double max) {
|
||||||
|
size_t max_count = *std::max_element(bins.begin(), bins.end());
|
||||||
|
bool needs_scaling = max_count > MAX_ASTERISK;
|
||||||
|
double bin_size = (max - min) / bins.size();
|
||||||
|
|
||||||
|
for (size_t i = 0; i < bins.size(); ++i) {
|
||||||
|
// Вывод количества элементов с полем в 6 символов
|
||||||
|
std::cout << std::setw(6) << std::right << bins[i] << "|";
|
||||||
|
|
||||||
|
// Рассчитываем высоту столбца с учетом ограничения MAX_ASTERISK
|
||||||
|
size_t height = needs_scaling ? static_cast<size_t>(MAX_ASTERISK * static_cast<double>(bins[i]) / max_count) : bins[i];
|
||||||
|
|
||||||
|
// Выводим звездочки для визуализации количества элементов
|
||||||
|
for (size_t j = 0; j < height; ++j) {
|
||||||
|
std::cout << "*";
|
||||||
|
}
|
||||||
|
std::cout << "\n";
|
||||||
|
|
||||||
|
// Выводим промежуточные границы между столбцами (исключая первую границу)
|
||||||
|
if (i < bins.size() - 1) {
|
||||||
|
double boundary = min + (i + 1) * bin_size;
|
||||||
|
std::cout << std::fixed << std::setprecision(2) << boundary << "\n";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
int main() {
|
||||||
|
std::vector<double> numbers;
|
||||||
|
size_t bin_count;
|
||||||
|
|
||||||
|
input_data(numbers, bin_count);
|
||||||
|
|
||||||
|
std::vector<size_t> bins(bin_count, 0);
|
||||||
|
double min, max;
|
||||||
|
calculate_bins(numbers, bins, min, max);
|
||||||
|
print_histogram(bins, min, max);
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
Двоичный файл не отображается.
Двоичный файл не отображается.
Двоичный файл не отображается.
@ -0,0 +1,41 @@
|
|||||||
|
{
|
||||||
|
"Version": 1,
|
||||||
|
"WorkspaceRootPath": "C:\\Users\\mikhailov\\source\\repos\\lab01\\",
|
||||||
|
"Documents": [
|
||||||
|
{
|
||||||
|
"AbsoluteMoniker": "D:0:0:{071943DF-3332-437E-BBFD-985E2D83873F}|lab01\\lab01.vcxproj|C:\\Users\\mikhailov\\source\\repos\\lab01\\lab01\\lab01.cpp||{D0E1A5C6-B359-4E41-9B60-3365922C2A22}",
|
||||||
|
"RelativeMoniker": "D:0:0:{071943DF-3332-437E-BBFD-985E2D83873F}|lab01\\lab01.vcxproj|solutionrelative:lab01\\lab01.cpp||{D0E1A5C6-B359-4E41-9B60-3365922C2A22}"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"DocumentGroupContainers": [
|
||||||
|
{
|
||||||
|
"Orientation": 0,
|
||||||
|
"VerticalTabListWidth": 256,
|
||||||
|
"DocumentGroups": [
|
||||||
|
{
|
||||||
|
"DockedWidth": 200,
|
||||||
|
"SelectedChildIndex": 0,
|
||||||
|
"Children": [
|
||||||
|
{
|
||||||
|
"$type": "Document",
|
||||||
|
"DocumentIndex": 0,
|
||||||
|
"Title": "lab01.cpp",
|
||||||
|
"DocumentMoniker": "C:\\Users\\mikhailov\\source\\repos\\lab01\\lab01\\lab01.cpp",
|
||||||
|
"RelativeDocumentMoniker": "lab01\\lab01.cpp",
|
||||||
|
"ToolTip": "C:\\Users\\mikhailov\\source\\repos\\lab01\\lab01\\lab01.cpp",
|
||||||
|
"RelativeToolTip": "lab01\\lab01.cpp",
|
||||||
|
"ViewState": "AQIAAC0AAAAAAAAAAAAgwD0AAAABAAAA",
|
||||||
|
"Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000677|",
|
||||||
|
"WhenOpened": "2024-11-13T15:34:19.217Z",
|
||||||
|
"EditorCaption": ""
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"$type": "Bookmark",
|
||||||
|
"Name": "ST:0:0:{cce594b6-0c39-4442-ba28-10c64ac7e89f}"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
Двоичный файл не отображается.
Двоичный файл не отображается.
Двоичный файл не отображается.
Двоичный файл не отображается.
Двоичный файл не отображается.
@ -0,0 +1,14 @@
|
|||||||
|
c:\users\mikhailov\source\repos\lab01\lab01\arm64\debug\vc143.pdb
|
||||||
|
c:\users\mikhailov\source\repos\lab01\lab01\arm64\debug\vc143.idb
|
||||||
|
c:\users\mikhailov\source\repos\lab01\lab01\arm64\debug\lab01.obj
|
||||||
|
c:\users\mikhailov\source\repos\lab01\arm64\debug\lab01.exe
|
||||||
|
c:\users\mikhailov\source\repos\lab01\arm64\debug\lab01.pdb
|
||||||
|
c:\users\mikhailov\source\repos\lab01\lab01\arm64\debug\lab01.ilk
|
||||||
|
c:\users\mikhailov\source\repos\lab01\lab01\arm64\debug\lab01.tlog\cl.command.1.tlog
|
||||||
|
c:\users\mikhailov\source\repos\lab01\lab01\arm64\debug\lab01.tlog\cl.items.tlog
|
||||||
|
c:\users\mikhailov\source\repos\lab01\lab01\arm64\debug\lab01.tlog\cl.read.1.tlog
|
||||||
|
c:\users\mikhailov\source\repos\lab01\lab01\arm64\debug\lab01.tlog\cl.write.1.tlog
|
||||||
|
c:\users\mikhailov\source\repos\lab01\lab01\arm64\debug\lab01.tlog\link.command.1.tlog
|
||||||
|
c:\users\mikhailov\source\repos\lab01\lab01\arm64\debug\lab01.tlog\link.read.1.tlog
|
||||||
|
c:\users\mikhailov\source\repos\lab01\lab01\arm64\debug\lab01.tlog\link.secondary.1.tlog
|
||||||
|
c:\users\mikhailov\source\repos\lab01\lab01\arm64\debug\lab01.tlog\link.write.1.tlog
|
@ -0,0 +1,11 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<Project>
|
||||||
|
<ProjectOutputs>
|
||||||
|
<ProjectOutput>
|
||||||
|
<FullPath>C:\Users\mikhailov\source\repos\lab01\ARM64\Debug\lab01.exe</FullPath>
|
||||||
|
</ProjectOutput>
|
||||||
|
</ProjectOutputs>
|
||||||
|
<ContentFiles />
|
||||||
|
<SatelliteDlls />
|
||||||
|
<NonRecipeFileRefs />
|
||||||
|
</Project>
|
@ -0,0 +1,43 @@
|
|||||||
|
lab01.cpp
|
||||||
|
C:\Users\mikhailov\source\repos\lab01\lab01\lab01.cpp(54,23): warning C4244: 'initializing': conversion from 'double' to 'size_t', possible loss of data
|
||||||
|
libcpmtd.lib(xlocale.obj) : error LNK2001: unresolved external symbol _calloc_dbg
|
||||||
|
lab01.obj : error LNK2001: unresolved external symbol _calloc_dbg
|
||||||
|
libcpmtd.lib(_tolower.obj) : error LNK2001: unresolved external symbol _calloc_dbg
|
||||||
|
libcpmtd.lib(locale.obj) : error LNK2001: unresolved external symbol _calloc_dbg
|
||||||
|
libcpmtd.lib(wlocale.obj) : error LNK2001: unresolved external symbol _calloc_dbg
|
||||||
|
libcpmtd.lib(xlocale.obj) : error LNK2001: unresolved external symbol _free_dbg
|
||||||
|
libcpmtd.lib(xwcsxfrm.obj) : error LNK2001: unresolved external symbol _free_dbg
|
||||||
|
libcpmtd.lib(StlCompareStringA.obj) : error LNK2001: unresolved external symbol _free_dbg
|
||||||
|
libcpmtd.lib(cerr.obj) : error LNK2001: unresolved external symbol _free_dbg
|
||||||
|
libcpmtd.lib(locale.obj) : error LNK2001: unresolved external symbol _free_dbg
|
||||||
|
libcpmtd.lib(StlLCMapStringA.obj) : error LNK2001: unresolved external symbol _free_dbg
|
||||||
|
libcpmtd.lib(wlocale.obj) : error LNK2001: unresolved external symbol _free_dbg
|
||||||
|
lab01.obj : error LNK2001: unresolved external symbol _free_dbg
|
||||||
|
libcpmtd.lib(locale0.obj) : error LNK2001: unresolved external symbol _free_dbg
|
||||||
|
libcpmtd.lib(cin.obj) : error LNK2001: unresolved external symbol _free_dbg
|
||||||
|
libcpmtd.lib(cout.obj) : error LNK2001: unresolved external symbol _free_dbg
|
||||||
|
libcpmtd.lib(xlocale.obj) : error LNK2001: unresolved external symbol _malloc_dbg
|
||||||
|
libcpmtd.lib(xwcsxfrm.obj) : error LNK2001: unresolved external symbol _malloc_dbg
|
||||||
|
libcpmtd.lib(StlCompareStringA.obj) : error LNK2001: unresolved external symbol _malloc_dbg
|
||||||
|
libcpmtd.lib(cerr.obj) : error LNK2001: unresolved external symbol _malloc_dbg
|
||||||
|
libcpmtd.lib(locale.obj) : error LNK2001: unresolved external symbol _malloc_dbg
|
||||||
|
libcpmtd.lib(StlLCMapStringA.obj) : error LNK2001: unresolved external symbol _malloc_dbg
|
||||||
|
libcpmtd.lib(wlocale.obj) : error LNK2001: unresolved external symbol _malloc_dbg
|
||||||
|
lab01.obj : error LNK2001: unresolved external symbol _malloc_dbg
|
||||||
|
libcpmtd.lib(locale0.obj) : error LNK2001: unresolved external symbol _malloc_dbg
|
||||||
|
libcpmtd.lib(cin.obj) : error LNK2001: unresolved external symbol _malloc_dbg
|
||||||
|
libcpmtd.lib(cout.obj) : error LNK2001: unresolved external symbol _malloc_dbg
|
||||||
|
libcpmtd.lib(locale.obj) : error LNK2001: unresolved external symbol _CrtDbgReport
|
||||||
|
libcpmtd.lib(wlocale.obj) : error LNK2001: unresolved external symbol _CrtDbgReport
|
||||||
|
libcpmtd.lib(xlocale.obj) : error LNK2001: unresolved external symbol _CrtDbgReport
|
||||||
|
lab01.obj : error LNK2001: unresolved external symbol _CrtDbgReport
|
||||||
|
libcpmtd.lib(cin.obj) : error LNK2001: unresolved external symbol _CrtDbgReport
|
||||||
|
libcpmtd.lib(cout.obj) : error LNK2001: unresolved external symbol _CrtDbgReport
|
||||||
|
libcpmtd.lib(cerr.obj) : error LNK2001: unresolved external symbol _CrtDbgReport
|
||||||
|
libcpmtd.lib(_tolower.obj) : error LNK2019: unresolved external symbol _wcsdup_dbg referenced in function _Getctype
|
||||||
|
libcpmtd.lib(xstrcoll.obj) : error LNK2001: unresolved external symbol _wcsdup_dbg
|
||||||
|
libcpmtd.lib(locale.obj) : error LNK2019: unresolved external symbol _realloc_dbg referenced in function "private: static void __cdecl std::locale::_Locimp::_Locimp_Addfac(class std::locale::_Locimp *,class std::locale::facet *,unsigned __int64)" (?_Locimp_Addfac@_Locimp@locale@std@@CAXPEAV123@PEAVfacet@23@_K@Z)
|
||||||
|
libcpmtd.lib(StlLCMapStringA.obj) : error LNK2019: unresolved external symbol _CrtDbgReportW referenced in function _freea_crt
|
||||||
|
libcpmtd.lib(xmbtowc.obj) : error LNK2001: unresolved external symbol _CrtDbgReportW
|
||||||
|
libcpmtd.lib(StlCompareStringA.obj) : error LNK2001: unresolved external symbol _CrtDbgReportW
|
||||||
|
C:\Users\mikhailov\source\repos\lab01\ARM64\Debug\lab01.exe : fatal error LNK1120: 7 unresolved externals
|
Двоичный файл не отображается.
Двоичный файл не отображается.
Двоичный файл не отображается.
@ -0,0 +1,2 @@
|
|||||||
|
PlatformToolSet=v143:VCToolArchitecture=NativeARM64:VCToolsVersion=14.40.33807:TargetPlatformVersion=10.0.22621.0:
|
||||||
|
Debug|ARM64|C:\Users\mikhailov\source\repos\lab01\|
|
Двоичный файл не отображается.
Двоичный файл не отображается.
@ -0,0 +1,13 @@
|
|||||||
|
c:\users\mikhailov\source\repos\lab01\lab01\arm64\release\vc143.pdb
|
||||||
|
c:\users\mikhailov\source\repos\lab01\lab01\arm64\release\lab01.obj
|
||||||
|
c:\users\mikhailov\source\repos\lab01\arm64\release\lab01.exe
|
||||||
|
c:\users\mikhailov\source\repos\lab01\arm64\release\lab01.pdb
|
||||||
|
c:\users\mikhailov\source\repos\lab01\lab01\arm64\release\lab01.iobj
|
||||||
|
c:\users\mikhailov\source\repos\lab01\lab01\arm64\release\lab01.tlog\cl.command.1.tlog
|
||||||
|
c:\users\mikhailov\source\repos\lab01\lab01\arm64\release\lab01.tlog\cl.items.tlog
|
||||||
|
c:\users\mikhailov\source\repos\lab01\lab01\arm64\release\lab01.tlog\cl.read.1.tlog
|
||||||
|
c:\users\mikhailov\source\repos\lab01\lab01\arm64\release\lab01.tlog\cl.write.1.tlog
|
||||||
|
c:\users\mikhailov\source\repos\lab01\lab01\arm64\release\lab01.tlog\link.command.1.tlog
|
||||||
|
c:\users\mikhailov\source\repos\lab01\lab01\arm64\release\lab01.tlog\link.read.1.tlog
|
||||||
|
c:\users\mikhailov\source\repos\lab01\lab01\arm64\release\lab01.tlog\link.secondary.1.tlog
|
||||||
|
c:\users\mikhailov\source\repos\lab01\lab01\arm64\release\lab01.tlog\link.write.1.tlog
|
@ -0,0 +1,11 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<Project>
|
||||||
|
<ProjectOutputs>
|
||||||
|
<ProjectOutput>
|
||||||
|
<FullPath>C:\Users\mikhailov\source\repos\lab01\ARM64\Release\lab01.exe</FullPath>
|
||||||
|
</ProjectOutput>
|
||||||
|
</ProjectOutputs>
|
||||||
|
<ContentFiles />
|
||||||
|
<SatelliteDlls />
|
||||||
|
<NonRecipeFileRefs />
|
||||||
|
</Project>
|
Двоичный файл не отображается.
@ -0,0 +1,4 @@
|
|||||||
|
lab01.cpp
|
||||||
|
Generating code
|
||||||
|
Finished generating code
|
||||||
|
lab01.vcxproj -> C:\Users\mikhailov\source\repos\lab01\ARM64\Release\lab01.exe
|
Двоичный файл не отображается.
Двоичный файл не отображается.
Двоичный файл не отображается.
@ -0,0 +1 @@
|
|||||||
|
C:\Users\mikhailov\source\repos\lab01\lab01\lab01.cpp;C:\Users\mikhailov\source\repos\lab01\lab01\ARM64\Release\lab01.obj
|
@ -0,0 +1,2 @@
|
|||||||
|
PlatformToolSet=v143:VCToolArchitecture=NativeARM64:VCToolsVersion=14.40.33807:TargetPlatformVersion=10.0.22621.0:
|
||||||
|
Release|ARM64|C:\Users\mikhailov\source\repos\lab01\|
|
Двоичный файл не отображается.
Двоичный файл не отображается.
@ -0,0 +1,2 @@
|
|||||||
|
^C:\USERS\MIKHAILOV\SOURCE\REPOS\LAB01\LAB01\ARM64\RELEASE\LAB01.OBJ
|
||||||
|
C:\Users\mikhailov\source\repos\lab01\lab01\ARM64\Release\lab01.iobj
|
Двоичный файл не отображается.
Двоичный файл не отображается.
@ -0,0 +1,196 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
|
<ItemGroup Label="ProjectConfigurations">
|
||||||
|
<ProjectConfiguration Include="Debug|Win32">
|
||||||
|
<Configuration>Debug</Configuration>
|
||||||
|
<Platform>Win32</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
|
<ProjectConfiguration Include="Release|Win32">
|
||||||
|
<Configuration>Release</Configuration>
|
||||||
|
<Platform>Win32</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
|
<ProjectConfiguration Include="Debug|x64">
|
||||||
|
<Configuration>Debug</Configuration>
|
||||||
|
<Platform>x64</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
|
<ProjectConfiguration Include="Release|x64">
|
||||||
|
<Configuration>Release</Configuration>
|
||||||
|
<Platform>x64</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
|
<ProjectConfiguration Include="Debug|ARM64">
|
||||||
|
<Configuration>Debug</Configuration>
|
||||||
|
<Platform>ARM64</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
|
<ProjectConfiguration Include="Release|ARM64">
|
||||||
|
<Configuration>Release</Configuration>
|
||||||
|
<Platform>ARM64</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
|
</ItemGroup>
|
||||||
|
<PropertyGroup Label="Globals">
|
||||||
|
<VCProjectVersion>17.0</VCProjectVersion>
|
||||||
|
<Keyword>Win32Proj</Keyword>
|
||||||
|
<ProjectGuid>{071943df-3332-437e-bbfd-985e2d83873f}</ProjectGuid>
|
||||||
|
<RootNamespace>lab01</RootNamespace>
|
||||||
|
<WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion>
|
||||||
|
</PropertyGroup>
|
||||||
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
||||||
|
<ConfigurationType>Application</ConfigurationType>
|
||||||
|
<UseDebugLibraries>true</UseDebugLibraries>
|
||||||
|
<PlatformToolset>v143</PlatformToolset>
|
||||||
|
<CharacterSet>Unicode</CharacterSet>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
||||||
|
<ConfigurationType>Application</ConfigurationType>
|
||||||
|
<UseDebugLibraries>false</UseDebugLibraries>
|
||||||
|
<PlatformToolset>v143</PlatformToolset>
|
||||||
|
<WholeProgramOptimization>true</WholeProgramOptimization>
|
||||||
|
<CharacterSet>Unicode</CharacterSet>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
|
||||||
|
<ConfigurationType>Application</ConfigurationType>
|
||||||
|
<UseDebugLibraries>true</UseDebugLibraries>
|
||||||
|
<PlatformToolset>v143</PlatformToolset>
|
||||||
|
<CharacterSet>Unicode</CharacterSet>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
|
||||||
|
<ConfigurationType>Application</ConfigurationType>
|
||||||
|
<UseDebugLibraries>false</UseDebugLibraries>
|
||||||
|
<PlatformToolset>v143</PlatformToolset>
|
||||||
|
<WholeProgramOptimization>true</WholeProgramOptimization>
|
||||||
|
<CharacterSet>Unicode</CharacterSet>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'" Label="Configuration">
|
||||||
|
<ConfigurationType>Application</ConfigurationType>
|
||||||
|
<UseDebugLibraries>true</UseDebugLibraries>
|
||||||
|
<PlatformToolset>v143</PlatformToolset>
|
||||||
|
<CharacterSet>Unicode</CharacterSet>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM64'" Label="Configuration">
|
||||||
|
<ConfigurationType>Application</ConfigurationType>
|
||||||
|
<UseDebugLibraries>false</UseDebugLibraries>
|
||||||
|
<PlatformToolset>v143</PlatformToolset>
|
||||||
|
<WholeProgramOptimization>true</WholeProgramOptimization>
|
||||||
|
<CharacterSet>Unicode</CharacterSet>
|
||||||
|
</PropertyGroup>
|
||||||
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||||
|
<ImportGroup Label="ExtensionSettings">
|
||||||
|
</ImportGroup>
|
||||||
|
<ImportGroup Label="Shared">
|
||||||
|
</ImportGroup>
|
||||||
|
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||||
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
|
</ImportGroup>
|
||||||
|
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||||
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
|
</ImportGroup>
|
||||||
|
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
||||||
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
|
</ImportGroup>
|
||||||
|
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
||||||
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
|
</ImportGroup>
|
||||||
|
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'">
|
||||||
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
|
</ImportGroup>
|
||||||
|
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|ARM64'">
|
||||||
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
|
</ImportGroup>
|
||||||
|
<PropertyGroup Label="UserMacros" />
|
||||||
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||||
|
<ClCompile>
|
||||||
|
<WarningLevel>Level3</WarningLevel>
|
||||||
|
<SDLCheck>true</SDLCheck>
|
||||||
|
<PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
|
<ConformanceMode>true</ConformanceMode>
|
||||||
|
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
||||||
|
</ClCompile>
|
||||||
|
<Link>
|
||||||
|
<SubSystem>Console</SubSystem>
|
||||||
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||||
|
</Link>
|
||||||
|
</ItemDefinitionGroup>
|
||||||
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||||
|
<ClCompile>
|
||||||
|
<WarningLevel>Level3</WarningLevel>
|
||||||
|
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||||
|
<IntrinsicFunctions>true</IntrinsicFunctions>
|
||||||
|
<SDLCheck>true</SDLCheck>
|
||||||
|
<PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
|
<ConformanceMode>true</ConformanceMode>
|
||||||
|
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
||||||
|
</ClCompile>
|
||||||
|
<Link>
|
||||||
|
<SubSystem>Console</SubSystem>
|
||||||
|
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
||||||
|
<OptimizeReferences>true</OptimizeReferences>
|
||||||
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||||
|
</Link>
|
||||||
|
</ItemDefinitionGroup>
|
||||||
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
||||||
|
<ClCompile>
|
||||||
|
<WarningLevel>Level3</WarningLevel>
|
||||||
|
<SDLCheck>true</SDLCheck>
|
||||||
|
<PreprocessorDefinitions>_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
|
<ConformanceMode>true</ConformanceMode>
|
||||||
|
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
||||||
|
</ClCompile>
|
||||||
|
<Link>
|
||||||
|
<SubSystem>Console</SubSystem>
|
||||||
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||||
|
</Link>
|
||||||
|
</ItemDefinitionGroup>
|
||||||
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
||||||
|
<ClCompile>
|
||||||
|
<WarningLevel>Level3</WarningLevel>
|
||||||
|
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||||
|
<IntrinsicFunctions>true</IntrinsicFunctions>
|
||||||
|
<SDLCheck>true</SDLCheck>
|
||||||
|
<PreprocessorDefinitions>NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
|
<ConformanceMode>true</ConformanceMode>
|
||||||
|
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
||||||
|
</ClCompile>
|
||||||
|
<Link>
|
||||||
|
<SubSystem>Console</SubSystem>
|
||||||
|
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
||||||
|
<OptimizeReferences>true</OptimizeReferences>
|
||||||
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||||
|
</Link>
|
||||||
|
</ItemDefinitionGroup>
|
||||||
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'">
|
||||||
|
<ClCompile>
|
||||||
|
<WarningLevel>Level3</WarningLevel>
|
||||||
|
<SDLCheck>true</SDLCheck>
|
||||||
|
<PreprocessorDefinitions>_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
|
<ConformanceMode>true</ConformanceMode>
|
||||||
|
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
||||||
|
</ClCompile>
|
||||||
|
<Link>
|
||||||
|
<SubSystem>Console</SubSystem>
|
||||||
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||||
|
</Link>
|
||||||
|
</ItemDefinitionGroup>
|
||||||
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM64'">
|
||||||
|
<ClCompile>
|
||||||
|
<WarningLevel>Level3</WarningLevel>
|
||||||
|
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||||
|
<IntrinsicFunctions>true</IntrinsicFunctions>
|
||||||
|
<SDLCheck>true</SDLCheck>
|
||||||
|
<PreprocessorDefinitions>NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
|
<ConformanceMode>true</ConformanceMode>
|
||||||
|
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
||||||
|
</ClCompile>
|
||||||
|
<Link>
|
||||||
|
<SubSystem>Console</SubSystem>
|
||||||
|
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
||||||
|
<OptimizeReferences>true</OptimizeReferences>
|
||||||
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||||
|
</Link>
|
||||||
|
</ItemDefinitionGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<ClCompile Include="lab01.cpp" />
|
||||||
|
</ItemGroup>
|
||||||
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||||
|
<ImportGroup Label="ExtensionTargets">
|
||||||
|
</ImportGroup>
|
||||||
|
</Project>
|
@ -0,0 +1,22 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
|
<ItemGroup>
|
||||||
|
<Filter Include="Source Files">
|
||||||
|
<UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier>
|
||||||
|
<Extensions>cpp;c;cc;cxx;c++;cppm;ixx;def;odl;idl;hpj;bat;asm;asmx</Extensions>
|
||||||
|
</Filter>
|
||||||
|
<Filter Include="Header Files">
|
||||||
|
<UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier>
|
||||||
|
<Extensions>h;hh;hpp;hxx;h++;hm;inl;inc;ipp;xsd</Extensions>
|
||||||
|
</Filter>
|
||||||
|
<Filter Include="Resource Files">
|
||||||
|
<UniqueIdentifier>{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}</UniqueIdentifier>
|
||||||
|
<Extensions>rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms</Extensions>
|
||||||
|
</Filter>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<ClCompile Include="lab01.cpp">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
</ItemGroup>
|
||||||
|
</Project>
|
@ -0,0 +1,4 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
|
<PropertyGroup />
|
||||||
|
</Project>
|
Двоичный файл не отображается.
Двоичный файл не отображается.
Двоичный файл не отображается.
Двоичный файл не отображается.
Двоичный файл не отображается.
@ -0,0 +1,41 @@
|
|||||||
|
{
|
||||||
|
"Version": 1,
|
||||||
|
"WorkspaceRootPath": "C:\\Users\\mikhailov\\source\\repos\\lab01_12var\\",
|
||||||
|
"Documents": [
|
||||||
|
{
|
||||||
|
"AbsoluteMoniker": "D:0:0:{BC866592-2029-4ECB-B62A-2FCA352AAA22}|lab01_12var\\lab01_12var.vcxproj|C:\\Users\\mikhailov\\source\\repos\\lab01_12var\\lab01_12var\\lab01_12var.cpp||{D0E1A5C6-B359-4E41-9B60-3365922C2A22}",
|
||||||
|
"RelativeMoniker": "D:0:0:{BC866592-2029-4ECB-B62A-2FCA352AAA22}|lab01_12var\\lab01_12var.vcxproj|solutionrelative:lab01_12var\\lab01_12var.cpp||{D0E1A5C6-B359-4E41-9B60-3365922C2A22}"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"DocumentGroupContainers": [
|
||||||
|
{
|
||||||
|
"Orientation": 0,
|
||||||
|
"VerticalTabListWidth": 256,
|
||||||
|
"DocumentGroups": [
|
||||||
|
{
|
||||||
|
"DockedWidth": 200,
|
||||||
|
"SelectedChildIndex": 1,
|
||||||
|
"Children": [
|
||||||
|
{
|
||||||
|
"$type": "Bookmark",
|
||||||
|
"Name": "ST:0:0:{cce594b6-0c39-4442-ba28-10c64ac7e89f}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"$type": "Document",
|
||||||
|
"DocumentIndex": 0,
|
||||||
|
"Title": "lab01_12var.cpp",
|
||||||
|
"DocumentMoniker": "C:\\Users\\mikhailov\\source\\repos\\lab01_12var\\lab01_12var\\lab01_12var.cpp",
|
||||||
|
"RelativeDocumentMoniker": "lab01_12var\\lab01_12var.cpp",
|
||||||
|
"ToolTip": "C:\\Users\\mikhailov\\source\\repos\\lab01_12var\\lab01_12var\\lab01_12var.cpp",
|
||||||
|
"RelativeToolTip": "lab01_12var\\lab01_12var.cpp",
|
||||||
|
"ViewState": "AQIAAC8AAAAAAAAAAAAgwE4AAAAAAAAA",
|
||||||
|
"Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000677|",
|
||||||
|
"WhenOpened": "2024-11-14T06:23:34.668Z",
|
||||||
|
"EditorCaption": ""
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
Двоичный файл не отображается.
Двоичный файл не отображается.
Двоичный файл не отображается.
Двоичный файл не отображается.
@ -0,0 +1,196 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
|
<ItemGroup Label="ProjectConfigurations">
|
||||||
|
<ProjectConfiguration Include="Debug|Win32">
|
||||||
|
<Configuration>Debug</Configuration>
|
||||||
|
<Platform>Win32</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
|
<ProjectConfiguration Include="Release|Win32">
|
||||||
|
<Configuration>Release</Configuration>
|
||||||
|
<Platform>Win32</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
|
<ProjectConfiguration Include="Debug|x64">
|
||||||
|
<Configuration>Debug</Configuration>
|
||||||
|
<Platform>x64</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
|
<ProjectConfiguration Include="Release|x64">
|
||||||
|
<Configuration>Release</Configuration>
|
||||||
|
<Platform>x64</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
|
<ProjectConfiguration Include="Debug|ARM64">
|
||||||
|
<Configuration>Debug</Configuration>
|
||||||
|
<Platform>ARM64</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
|
<ProjectConfiguration Include="Release|ARM64">
|
||||||
|
<Configuration>Release</Configuration>
|
||||||
|
<Platform>ARM64</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
|
</ItemGroup>
|
||||||
|
<PropertyGroup Label="Globals">
|
||||||
|
<VCProjectVersion>17.0</VCProjectVersion>
|
||||||
|
<Keyword>Win32Proj</Keyword>
|
||||||
|
<ProjectGuid>{bc866592-2029-4ecb-b62a-2fca352aaa22}</ProjectGuid>
|
||||||
|
<RootNamespace>lab0112var</RootNamespace>
|
||||||
|
<WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion>
|
||||||
|
</PropertyGroup>
|
||||||
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
||||||
|
<ConfigurationType>Application</ConfigurationType>
|
||||||
|
<UseDebugLibraries>true</UseDebugLibraries>
|
||||||
|
<PlatformToolset>v143</PlatformToolset>
|
||||||
|
<CharacterSet>Unicode</CharacterSet>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
||||||
|
<ConfigurationType>Application</ConfigurationType>
|
||||||
|
<UseDebugLibraries>false</UseDebugLibraries>
|
||||||
|
<PlatformToolset>v143</PlatformToolset>
|
||||||
|
<WholeProgramOptimization>true</WholeProgramOptimization>
|
||||||
|
<CharacterSet>Unicode</CharacterSet>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
|
||||||
|
<ConfigurationType>Application</ConfigurationType>
|
||||||
|
<UseDebugLibraries>true</UseDebugLibraries>
|
||||||
|
<PlatformToolset>v143</PlatformToolset>
|
||||||
|
<CharacterSet>Unicode</CharacterSet>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
|
||||||
|
<ConfigurationType>Application</ConfigurationType>
|
||||||
|
<UseDebugLibraries>false</UseDebugLibraries>
|
||||||
|
<PlatformToolset>v143</PlatformToolset>
|
||||||
|
<WholeProgramOptimization>true</WholeProgramOptimization>
|
||||||
|
<CharacterSet>Unicode</CharacterSet>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'" Label="Configuration">
|
||||||
|
<ConfigurationType>Application</ConfigurationType>
|
||||||
|
<UseDebugLibraries>true</UseDebugLibraries>
|
||||||
|
<PlatformToolset>v143</PlatformToolset>
|
||||||
|
<CharacterSet>Unicode</CharacterSet>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM64'" Label="Configuration">
|
||||||
|
<ConfigurationType>Application</ConfigurationType>
|
||||||
|
<UseDebugLibraries>false</UseDebugLibraries>
|
||||||
|
<PlatformToolset>v143</PlatformToolset>
|
||||||
|
<WholeProgramOptimization>true</WholeProgramOptimization>
|
||||||
|
<CharacterSet>Unicode</CharacterSet>
|
||||||
|
</PropertyGroup>
|
||||||
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||||
|
<ImportGroup Label="ExtensionSettings">
|
||||||
|
</ImportGroup>
|
||||||
|
<ImportGroup Label="Shared">
|
||||||
|
</ImportGroup>
|
||||||
|
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||||
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
|
</ImportGroup>
|
||||||
|
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||||
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
|
</ImportGroup>
|
||||||
|
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
||||||
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
|
</ImportGroup>
|
||||||
|
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
||||||
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
|
</ImportGroup>
|
||||||
|
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'">
|
||||||
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
|
</ImportGroup>
|
||||||
|
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|ARM64'">
|
||||||
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
|
</ImportGroup>
|
||||||
|
<PropertyGroup Label="UserMacros" />
|
||||||
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||||
|
<ClCompile>
|
||||||
|
<WarningLevel>Level3</WarningLevel>
|
||||||
|
<SDLCheck>true</SDLCheck>
|
||||||
|
<PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
|
<ConformanceMode>true</ConformanceMode>
|
||||||
|
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
||||||
|
</ClCompile>
|
||||||
|
<Link>
|
||||||
|
<SubSystem>Console</SubSystem>
|
||||||
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||||
|
</Link>
|
||||||
|
</ItemDefinitionGroup>
|
||||||
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||||
|
<ClCompile>
|
||||||
|
<WarningLevel>Level3</WarningLevel>
|
||||||
|
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||||
|
<IntrinsicFunctions>true</IntrinsicFunctions>
|
||||||
|
<SDLCheck>true</SDLCheck>
|
||||||
|
<PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
|
<ConformanceMode>true</ConformanceMode>
|
||||||
|
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
||||||
|
</ClCompile>
|
||||||
|
<Link>
|
||||||
|
<SubSystem>Console</SubSystem>
|
||||||
|
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
||||||
|
<OptimizeReferences>true</OptimizeReferences>
|
||||||
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||||
|
</Link>
|
||||||
|
</ItemDefinitionGroup>
|
||||||
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
||||||
|
<ClCompile>
|
||||||
|
<WarningLevel>Level3</WarningLevel>
|
||||||
|
<SDLCheck>true</SDLCheck>
|
||||||
|
<PreprocessorDefinitions>_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
|
<ConformanceMode>true</ConformanceMode>
|
||||||
|
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
||||||
|
</ClCompile>
|
||||||
|
<Link>
|
||||||
|
<SubSystem>Console</SubSystem>
|
||||||
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||||
|
</Link>
|
||||||
|
</ItemDefinitionGroup>
|
||||||
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
||||||
|
<ClCompile>
|
||||||
|
<WarningLevel>Level3</WarningLevel>
|
||||||
|
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||||
|
<IntrinsicFunctions>true</IntrinsicFunctions>
|
||||||
|
<SDLCheck>true</SDLCheck>
|
||||||
|
<PreprocessorDefinitions>NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
|
<ConformanceMode>true</ConformanceMode>
|
||||||
|
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
||||||
|
</ClCompile>
|
||||||
|
<Link>
|
||||||
|
<SubSystem>Console</SubSystem>
|
||||||
|
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
||||||
|
<OptimizeReferences>true</OptimizeReferences>
|
||||||
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||||
|
</Link>
|
||||||
|
</ItemDefinitionGroup>
|
||||||
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'">
|
||||||
|
<ClCompile>
|
||||||
|
<WarningLevel>Level3</WarningLevel>
|
||||||
|
<SDLCheck>true</SDLCheck>
|
||||||
|
<PreprocessorDefinitions>_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
|
<ConformanceMode>true</ConformanceMode>
|
||||||
|
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
||||||
|
</ClCompile>
|
||||||
|
<Link>
|
||||||
|
<SubSystem>Console</SubSystem>
|
||||||
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||||
|
</Link>
|
||||||
|
</ItemDefinitionGroup>
|
||||||
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM64'">
|
||||||
|
<ClCompile>
|
||||||
|
<WarningLevel>Level3</WarningLevel>
|
||||||
|
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||||
|
<IntrinsicFunctions>true</IntrinsicFunctions>
|
||||||
|
<SDLCheck>true</SDLCheck>
|
||||||
|
<PreprocessorDefinitions>NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
|
<ConformanceMode>true</ConformanceMode>
|
||||||
|
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
||||||
|
</ClCompile>
|
||||||
|
<Link>
|
||||||
|
<SubSystem>Console</SubSystem>
|
||||||
|
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
||||||
|
<OptimizeReferences>true</OptimizeReferences>
|
||||||
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||||
|
</Link>
|
||||||
|
</ItemDefinitionGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<ClCompile Include="lab01_12var.cpp" />
|
||||||
|
</ItemGroup>
|
||||||
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||||
|
<ImportGroup Label="ExtensionTargets">
|
||||||
|
</ImportGroup>
|
||||||
|
</Project>
|
@ -0,0 +1,22 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
|
<ItemGroup>
|
||||||
|
<Filter Include="Source Files">
|
||||||
|
<UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier>
|
||||||
|
<Extensions>cpp;c;cc;cxx;c++;cppm;ixx;def;odl;idl;hpj;bat;asm;asmx</Extensions>
|
||||||
|
</Filter>
|
||||||
|
<Filter Include="Header Files">
|
||||||
|
<UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier>
|
||||||
|
<Extensions>h;hh;hpp;hxx;h++;hm;inl;inc;ipp;xsd</Extensions>
|
||||||
|
</Filter>
|
||||||
|
<Filter Include="Resource Files">
|
||||||
|
<UniqueIdentifier>{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}</UniqueIdentifier>
|
||||||
|
<Extensions>rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms</Extensions>
|
||||||
|
</Filter>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<ClCompile Include="lab01_12var.cpp">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
</ItemGroup>
|
||||||
|
</Project>
|
@ -0,0 +1,4 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
|
<PropertyGroup />
|
||||||
|
</Project>
|
@ -0,0 +1,11 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<Project>
|
||||||
|
<ProjectOutputs>
|
||||||
|
<ProjectOutput>
|
||||||
|
<FullPath>C:\Users\mikhailov\source\repos\lab01_12var\lab01_12var\ARM64\Debug\lab01_12var.exe</FullPath>
|
||||||
|
</ProjectOutput>
|
||||||
|
</ProjectOutputs>
|
||||||
|
<ContentFiles />
|
||||||
|
<SatelliteDlls />
|
||||||
|
<NonRecipeFileRefs />
|
||||||
|
</Project>
|
Двоичный файл не отображается.
@ -0,0 +1,2 @@
|
|||||||
|
lab01_12var.cpp
|
||||||
|
lab01_12var.vcxproj -> C:\Users\mikhailov\source\repos\lab01_12var\lab01_12var\ARM64\Debug\lab01_12var.exe
|
Двоичный файл не отображается.
Двоичный файл не отображается.
Двоичный файл не отображается.
@ -0,0 +1 @@
|
|||||||
|
C:\Users\mikhailov\source\repos\lab01_12var\lab01_12var\lab01_12var.cpp;C:\Users\mikhailov\source\repos\lab01_12var\lab01_12var\lab01_12var\ARM64\Debug\lab01_12var.obj
|
@ -0,0 +1,2 @@
|
|||||||
|
PlatformToolSet=v143:VCToolArchitecture=NativeARM64:VCToolsVersion=14.40.33807:TargetPlatformVersion=10.0.22621.0:
|
||||||
|
Debug|ARM64|C:\Users\mikhailov\source\repos\lab01_12var\lab01_12var\|
|
Двоичный файл не отображается.
Двоичный файл не отображается.
@ -0,0 +1,2 @@
|
|||||||
|
^C:\USERS\MIKHAILOV\SOURCE\REPOS\LAB01_12VAR\LAB01_12VAR\LAB01_12VAR\ARM64\DEBUG\LAB01_12VAR.OBJ
|
||||||
|
C:\Users\mikhailov\source\repos\lab01_12var\lab01_12var\lab01_12var\ARM64\Debug\lab01_12var.ilk
|
Двоичный файл не отображается.
Двоичный файл не отображается.
Двоичный файл не отображается.
@ -0,0 +1,13 @@
|
|||||||
|
c:\users\mikhailov\source\repos\lab01_12var\lab01_12var\lab01_12var\arm64\release\vc143.pdb
|
||||||
|
c:\users\mikhailov\source\repos\lab01_12var\lab01_12var\lab01_12var\arm64\release\lab01_12var.obj
|
||||||
|
c:\users\mikhailov\source\repos\lab01_12var\lab01_12var\arm64\release\lab01_12var.exe
|
||||||
|
c:\users\mikhailov\source\repos\lab01_12var\lab01_12var\arm64\release\lab01_12var.pdb
|
||||||
|
c:\users\mikhailov\source\repos\lab01_12var\lab01_12var\lab01_12var\arm64\release\lab01_12var.iobj
|
||||||
|
c:\users\mikhailov\source\repos\lab01_12var\lab01_12var\lab01_12var\arm64\release\lab01_12var.tlog\cl.command.1.tlog
|
||||||
|
c:\users\mikhailov\source\repos\lab01_12var\lab01_12var\lab01_12var\arm64\release\lab01_12var.tlog\cl.items.tlog
|
||||||
|
c:\users\mikhailov\source\repos\lab01_12var\lab01_12var\lab01_12var\arm64\release\lab01_12var.tlog\cl.read.1.tlog
|
||||||
|
c:\users\mikhailov\source\repos\lab01_12var\lab01_12var\lab01_12var\arm64\release\lab01_12var.tlog\cl.write.1.tlog
|
||||||
|
c:\users\mikhailov\source\repos\lab01_12var\lab01_12var\lab01_12var\arm64\release\lab01_12var.tlog\link.command.1.tlog
|
||||||
|
c:\users\mikhailov\source\repos\lab01_12var\lab01_12var\lab01_12var\arm64\release\lab01_12var.tlog\link.read.1.tlog
|
||||||
|
c:\users\mikhailov\source\repos\lab01_12var\lab01_12var\lab01_12var\arm64\release\lab01_12var.tlog\link.secondary.1.tlog
|
||||||
|
c:\users\mikhailov\source\repos\lab01_12var\lab01_12var\lab01_12var\arm64\release\lab01_12var.tlog\link.write.1.tlog
|
@ -0,0 +1,11 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<Project>
|
||||||
|
<ProjectOutputs>
|
||||||
|
<ProjectOutput>
|
||||||
|
<FullPath>C:\Users\mikhailov\source\repos\lab01_12var\lab01_12var\ARM64\Release\lab01_12var.exe</FullPath>
|
||||||
|
</ProjectOutput>
|
||||||
|
</ProjectOutputs>
|
||||||
|
<ContentFiles />
|
||||||
|
<SatelliteDlls />
|
||||||
|
<NonRecipeFileRefs />
|
||||||
|
</Project>
|
Двоичный файл не отображается.
@ -0,0 +1,3 @@
|
|||||||
|
Generating code
|
||||||
|
Finished generating code
|
||||||
|
lab01_12var.vcxproj -> C:\Users\mikhailov\source\repos\lab01_12var\lab01_12var\ARM64\Release\lab01_12var.exe
|
Двоичный файл не отображается.
Двоичный файл не отображается.
Двоичный файл не отображается.
@ -0,0 +1 @@
|
|||||||
|
C:\Users\mikhailov\source\repos\lab01_12var\lab01_12var\lab01_12var.cpp;C:\Users\mikhailov\source\repos\lab01_12var\lab01_12var\lab01_12var\ARM64\Release\lab01_12var.obj
|
@ -0,0 +1,2 @@
|
|||||||
|
PlatformToolSet=v143:VCToolArchitecture=NativeARM64:VCToolsVersion=14.40.33807:TargetPlatformVersion=10.0.22621.0:
|
||||||
|
Release|ARM64|C:\Users\mikhailov\source\repos\lab01_12var\lab01_12var\|
|
Двоичный файл не отображается.
Двоичный файл не отображается.
@ -0,0 +1,2 @@
|
|||||||
|
^C:\USERS\MIKHAILOV\SOURCE\REPOS\LAB01_12VAR\LAB01_12VAR\LAB01_12VAR\ARM64\RELEASE\LAB01_12VAR.OBJ
|
||||||
|
C:\Users\mikhailov\source\repos\lab01_12var\lab01_12var\lab01_12var\ARM64\Release\lab01_12var.iobj
|
Двоичный файл не отображается.
Двоичный файл не отображается.
@ -0,0 +1,121 @@
|
|||||||
|
@echo off
|
||||||
|
REM Пути к тестовым файлам для базовой версии и варианта 12
|
||||||
|
set input_dir=tests\base_version\input
|
||||||
|
set expected_dir=tests\base_version\expected
|
||||||
|
set actual_dir=tests\base_version\actual
|
||||||
|
|
||||||
|
set var12_input_dir=tests\var12_version\input
|
||||||
|
set var12_expected_dir=tests\var12_version\expected
|
||||||
|
set var12_actual_dir=tests\var12_version\actual
|
||||||
|
|
||||||
|
REM Переменные для подсчета непройденных тестов
|
||||||
|
set /a failed_tests=0
|
||||||
|
set /a var12_failed_tests=0
|
||||||
|
|
||||||
|
REM Создаем папки для результатов, если они не существуют
|
||||||
|
if not exist %actual_dir% mkdir %actual_dir%
|
||||||
|
if not exist %var12_actual_dir% mkdir %var12_actual_dir%
|
||||||
|
|
||||||
|
REM --- Базовые тесты ---
|
||||||
|
echo Running Base Test 1
|
||||||
|
lab01.exe < %input_dir%\01-scaling.input.txt > %actual_dir%\01-scaling.actual.txt 2>NUL
|
||||||
|
fc /N %actual_dir%\01-scaling.actual.txt %expected_dir%\01-scaling.expected.txt >nul
|
||||||
|
if %errorlevel% equ 0 (
|
||||||
|
echo Base Test 1 passed
|
||||||
|
) else (
|
||||||
|
echo Base Test 1 failed
|
||||||
|
set /a failed_tests+=1
|
||||||
|
fc /N %actual_dir%\01-scaling.actual.txt %expected_dir%\01-scaling.expected.txt
|
||||||
|
)
|
||||||
|
echo ---------------------------------------------------
|
||||||
|
|
||||||
|
echo Running Base Test 2
|
||||||
|
lab01.exe < %input_dir%\02-scaling.input.txt > %actual_dir%\02-scaling.actual.txt 2>NUL
|
||||||
|
fc /N %actual_dir%\02-scaling.actual.txt %expected_dir%\02-scaling.expected.txt >nul
|
||||||
|
if %errorlevel% equ 0 (
|
||||||
|
echo Base Test 2 passed
|
||||||
|
) else (
|
||||||
|
echo Base Test 2 failed
|
||||||
|
set /a failed_tests+=1
|
||||||
|
fc /N %actual_dir%\02-scaling.actual.txt %expected_dir%\02-scaling.expected.txt
|
||||||
|
)
|
||||||
|
echo ---------------------------------------------------
|
||||||
|
|
||||||
|
echo Running Base Test 3
|
||||||
|
lab01.exe < %input_dir%\03-scaling.input.txt > %actual_dir%\03-scaling.actual.txt 2>NUL
|
||||||
|
fc /N %actual_dir%\03-scaling.actual.txt %expected_dir%\03-scaling.expected.txt >nul
|
||||||
|
if %errorlevel% equ 0 (
|
||||||
|
echo Base Test 3 passed
|
||||||
|
) else (
|
||||||
|
echo Base Test 3 failed
|
||||||
|
set /a failed_tests+=1
|
||||||
|
fc /N %actual_dir%\03-scaling.actual.txt %expected_dir%\03-scaling.expected.txt
|
||||||
|
)
|
||||||
|
echo ---------------------------------------------------
|
||||||
|
|
||||||
|
echo Running Base Test 4
|
||||||
|
lab01.exe < %input_dir%\04-scaling.input.txt > %actual_dir%\04-scaling.actual.txt 2>NUL
|
||||||
|
fc /N %actual_dir%\04-scaling.actual.txt %expected_dir%\04-scaling.expected.txt >nul
|
||||||
|
if %errorlevel% equ 0 (
|
||||||
|
echo Base Test 4 passed
|
||||||
|
) else (
|
||||||
|
echo Base Test 4 failed
|
||||||
|
set /a failed_tests+=1
|
||||||
|
fc /N %actual_dir%\04-scaling.actual.txt %expected_dir%\04-scaling.expected.txt
|
||||||
|
)
|
||||||
|
echo ---------------------------------------------------
|
||||||
|
|
||||||
|
REM --- Тесты варианта 12 ---
|
||||||
|
echo Running Var12 Test 1
|
||||||
|
lab01_12var.exe < %var12_input_dir%\01-scaling.input.txt > %var12_actual_dir%\01-scaling.actual.txt 2>NUL
|
||||||
|
fc /N %var12_actual_dir%\01-scaling.actual.txt %var12_expected_dir%\01-scaling.expected.txt >nul
|
||||||
|
if %errorlevel% equ 0 (
|
||||||
|
echo Var12 Test 1 passed
|
||||||
|
) else (
|
||||||
|
echo Var12 Test 1 failed
|
||||||
|
set /a var12_failed_tests+=1
|
||||||
|
fc /N %var12_actual_dir%\01-scaling.actual.txt %var12_expected_dir%\01-scaling.expected.txt
|
||||||
|
)
|
||||||
|
echo ---------------------------------------------------
|
||||||
|
|
||||||
|
echo Running Var12 Test 2
|
||||||
|
lab01_12var.exe < %var12_input_dir%\02-scaling.input.txt > %var12_actual_dir%\02-scaling.actual.txt 2>NUL
|
||||||
|
fc /N %var12_actual_dir%\02-scaling.actual.txt %var12_expected_dir%\02-scaling.expected.txt >nul
|
||||||
|
if %errorlevel% equ 0 (
|
||||||
|
echo Var12 Test 2 passed
|
||||||
|
) else (
|
||||||
|
echo Var12 Test 2 failed
|
||||||
|
set /a var12_failed_tests+=1
|
||||||
|
fc /N %var12_actual_dir%\02-scaling.actual.txt %var12_expected_dir%\02-scaling.expected.txt
|
||||||
|
)
|
||||||
|
echo ---------------------------------------------------
|
||||||
|
|
||||||
|
echo Running Var12 Test 3
|
||||||
|
lab01_12var.exe < %var12_input_dir%\03-scaling.input.txt > %var12_actual_dir%\03-scaling.actual.txt 2>NUL
|
||||||
|
fc /N %var12_actual_dir%\03-scaling.actual.txt %var12_expected_dir%\03-scaling.expected.txt >nul
|
||||||
|
if %errorlevel% equ 0 (
|
||||||
|
echo Var12 Test 3 passed
|
||||||
|
) else (
|
||||||
|
echo Var12 Test 3 failed
|
||||||
|
set /a var12_failed_tests+=1
|
||||||
|
fc /N %var12_actual_dir%\03-scaling.actual.txt %var12_expected_dir%\03-scaling.expected.txt
|
||||||
|
)
|
||||||
|
echo ---------------------------------------------------
|
||||||
|
|
||||||
|
echo Running Var12 Test 4
|
||||||
|
lab01_12var.exe < %var12_input_dir%\04-scaling.input.txt > %var12_actual_dir%\04-scaling.actual.txt 2>NUL
|
||||||
|
fc /N %var12_actual_dir%\04-scaling.actual.txt %var12_expected_dir%\04-scaling.expected.txt >nul
|
||||||
|
if %errorlevel% equ 0 (
|
||||||
|
echo Var12 Test 4 passed
|
||||||
|
) else (
|
||||||
|
echo Var12 Test 4 failed
|
||||||
|
set /a var12_failed_tests+=1
|
||||||
|
fc /N %var12_actual_dir%\04-scaling.actual.txt %var12_expected_dir%\04-scaling.expected.txt
|
||||||
|
)
|
||||||
|
echo ---------------------------------------------------
|
||||||
|
|
||||||
|
REM Вывод итогов
|
||||||
|
echo All tests completed.
|
||||||
|
echo Number of failed base tests: %failed_tests%
|
||||||
|
echo Number of failed Var12 tests: %var12_failed_tests%
|
||||||
|
pause
|
Некоторые файлы не были показаны из-за слишком большого количества измененных файлов Показать больше
Загрузка…
Ссылка в новой задаче