This file contains hidden or 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 <iostream> | |
#include <fstream> | |
using namespace std; | |
/* | |
Задан целочисленный двухмерный массив a из n строк и m столбцов. Найти номер первого максимального | |
значения среди отрицательных элементов, расположенных до первого элемента, равного Т. Матрицу рассматривать | |
по строкам. В случае отсутствия отрицательных или равных Т элементов или невозможности поиска вывести | |
соответствующие поясняющие сообщения. |
This file contains hidden or 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 <iostream> | |
#include <math.h> | |
#include <cstdlib> | |
using namespace std; | |
double** read(int m, int n){ | |
double** A = (double**)malloc(m * sizeof(double*)); | |
for(int i = 0; i < m; i++){ | |
A[i] = (double*)malloc(n * sizeof(double)); | |
} |
This file contains hidden or 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 <iostream> | |
#include <cstdlib> | |
using namespace std; | |
int getMax(int *a, int size){ | |
int n = -2147483648; | |
for(int i = 0; i < size; i++){ | |
if(a[i] > n) n = a[i]; | |
} |
This file contains hidden or 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
using System; | |
using System.Collections.Generic; | |
using UnityEngine; | |
using Forge; | |
public class NicknameHUD | |
{ | |
struct Entity | |
{ | |
public Vector3 pos; |
This file contains hidden or 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
using System; | |
using System.Collections; | |
using System.Collections.Generic; | |
using System.Linq; | |
using UnityEngine; | |
namespace GeoEngine | |
{ | |
public class OffsetExistenceIndex | |
{ |
This file contains hidden or 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
<html> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> | |
<style> | |
body | |
{ | |
margin: 0; | |
} | |
</style> | |
</head> |
This file contains hidden or 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
<style> | |
body | |
{ | |
margin: 0; | |
} | |
</style> | |
<div> |
This file contains hidden or 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
using UnityEngine; | |
using System; | |
using System.Collections.Generic; | |
namespace GeoEngine | |
{ | |
public class WorldEditor | |
{ | |
World World; | |
Offset3 SelectionA, SelectionB; |
This file contains hidden or 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
using System; | |
using System.Collections.Generic; | |
using System.Diagnostics; | |
public class TimeMachine | |
{ | |
public static Dictionary<string, Stopwatch> Timers = new Dictionary<string, Stopwatch>(); | |
public static void Start(string name) | |
{ |
This file contains hidden or 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
<style> | |
body | |
{ | |
margin: 0; | |
} | |
</style> | |
<div> | |
<canvas id='LinesX2' width='1024' height='600' style='display: block;'></canvas> | |
</div> |
NewerOlder