This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "pch.h" | |
#include <iostream> | |
#include <stdio.h> | |
#include <Windows.h> | |
#include <ctime> | |
#include <cstdlib> | |
using namespace std; | |
struct Branch | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "pch.h" | |
#include <iostream> | |
#include <stdio.h> | |
#include <Windows.h> | |
#include <ctime> | |
#include <cstdlib> | |
using namespace std; | |
struct Branch | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "pch.h" | |
#include <iostream> | |
#include <stdio.h> | |
#include <Windows.h> | |
#include <ctime> | |
#include <cstdlib> | |
using namespace std; | |
struct Branch | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "pch.h" | |
#include <iostream> | |
#include <cstdlib> | |
using namespace std; | |
struct Node { | |
int value; | |
struct Node *right; | |
struct Node *left; | |
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include"pch.h" | |
#include <iostream> | |
#include <stdio.h> | |
#include <Windows.h> | |
#include <ctime> | |
int* InputArray(int n) | |
{ | |
FILE *f; | |
fopen_s(&f, "C:\\temp\\intut.txt", "wt"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Лабораторная работа№ 2</title> | |
</head> | |
<body> | |
<head>Свойства отношения матрицы nxn</head> | |
<form action="" method="post"> | |
Матрица отношения: <textarea rows="6" name="mat"></textarea> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<h1>Форма регистрации</h1> | |
<title>header</title> | |
</head> | |
<body> | |
<p>Введите логин и пароль.</p> | |
<?php |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset = "utf-8"> | |
<title>домашняя работа</title> | |
</head> | |
<p> | |
<h1>Автобиография студента группы ИВТАПбд-11 Васиярова М.В. </h1> | |
<ol> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ConsoleApplication3.cpp : Этот файл содержит функцию "main". Здесь начинается и заканчивается выполнение программы. | |
// | |
#include "pch.h" | |
#include <iostream> | |
struct Node { | |
int value=10; | |
struct Node *next; | |
struct Node *prev; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include"stdio.h" | |
#include "pch.h" | |
#include <iostream> | |
#include"string" | |
#include "conio.h" | |
#include "Windows.h" | |
int main() | |
{ | |
//кодирование |
NewerOlder