Skip to content

Instantly share code, notes, and snippets.

View pereslavtsev's full-sized avatar
:atom:

Vitaly Pereslavtsev pereslavtsev

:atom:
View GitHub Profile
#include "stdafx.h"
#include <iomanip>
#include <iostream>
#include <conio.h>
#include <windows.h>
#include <fstream>
using namespace std;
const int n=5;
enum ConsoleColor
@pereslavtsev
pereslavtsev / gist:8038775
Last active December 31, 2015 20:09 — forked from anonymous/gist:8036139
Задание 2. Ввести координаты трех точек на плоскости, и, напечатать номера тех из них, которые ближе всего находятся друг к другу. Влад
#include "stdafx.h"
#include <iomanip>
#include <iostream>
using namespace std;
const int n=7;
const int m=7;
#include "stdafx.h"
#include <iostream>
#include <fstream>
#include <iomanip>
#include <conio.h>
#include <Windows.h>
using namespace std;
const int n =4;
const int stb= n;
#include "stdafx.h"
#include <windows.h>
#include <iomanip>
#include <iostream>
using namespace std;
int main()
{
setlocale(LC_ALL, "Rus");
srand(time(0));
#include "stdafx.h"
#include <iomanip>
#include <iostream>
#include <fstream>
using namespace std;
const char filens[]="D://1.txt"; //ПУТЬ ДО ФАЙЛА
const int n=6;
const int m=6;
@pereslavtsev
pereslavtsev / gist:7812444
Created December 5, 2013 19:39 — forked from anonymous/gist:7800255
Программа Влада
#include "stdafx.h"
#include <iomanip>
#include <iostream>
using namespace std;
const int n=6;
const int m=6;
struct funk
@pereslavtsev
pereslavtsev / product_m.cpp
Last active December 30, 2015 08:59 — forked from anonymous/gist:7800586
Программа Андрея на нахождение произведения матриц
// 312.cpp: определяет точку входа для консольного приложения.
//
#include "stdafx.h"
#include <iomanip>
#include <iostream>
using namespace std;
const int str=3;
<?php defined('SYSPATH') or die('No direct access allowed.');
/**
* Ajax Template Controller template
*
* @package Templates
* @author Sergei Gladkovskiy <[email protected]>
*/
abstract class Controller_Ajax_Template extends Controller {