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
lng,lat | |
-2.294783,-0.344479 | |
-2.051278,-0.259753 | |
-0.203587,-2.28124 | |
-1.406269,-2.559496 | |
-3.052496,-1.86799 | |
-1.689414,-2.054405 | |
0.042008,0.805669 | |
-2.978075,-1.221519 | |
-3.607885,-1.882528 |
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 <iostream> | |
#include <chrono> | |
#include <windows.h> | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <fstream> | |
using namespace std; | |
using namespace std::chrono; |
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
2 | |
Ivan fnbic 7101 3 | |
matanec -1 | |
dolgopa 8 | |
muzika 3 | |
Petr fnbic 7102 1 | |
pivovarenie 10 |
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<string.h> | |
const int N = 10; | |
// структура, описывающая результат выполениия состояния, а именно: | |
// | |
struct ReturnType | |
{ | |
struct ReturnType(*ResultState)(int); // это - указатель на функцию. Указывает на следующее состояние, что следует выполнить машине. |
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<stdlib.h> | |
#include<string.h> | |
#include<malloc.h> | |
#include<ctype.h> | |
int podstroki(char *st, char **pod_str, int k, int *massiv_nomerov, int m) | |
{ | |
char *pl, *pr, **q; | |
int n = strlen(st); |
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<stdlib.h> | |
#include<conio.h> | |
struct node | |
{ | |
int val; | |
struct node *next; | |
}; |
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
// | |
// 5 | |
#include<stdio.h> | |
#include<stdlib.h> | |
#include<string.h> | |
int main(int argc, char *argv[]) | |
{ | |
//in_file.txt -n 10 -b base_ | |
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 <stdlib.h> | |
#include <string.h> | |
#include <ctype.h> | |
int main() | |
{ | |
// НУЖНЫЕ НАМ ПЕРЕМЕННЫЕ. | |
//Это универсальный набор, минимально необходимый для любой задачи с массивом строк | |
char *STR[10]; // наш массив строк |