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
import React from 'react'; | |
import useContextMenu from './useContextMenu'; | |
const App = () => { | |
const items = React.useMemo( | |
() => [ | |
{ | |
label: 'Item 1', | |
click: () => { | |
console.log('clicked item 1'); |
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 "stdafx.h" | |
#include <iomanip> | |
#include <iostream> | |
#include <conio.h> | |
#include <windows.h> | |
#include <fstream> | |
using namespace std; | |
const int n=5; | |
enum ConsoleColor |
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 "stdafx.h" | |
#include <iomanip> | |
#include <iostream> | |
using namespace std; | |
const int n=7; | |
const int m=7; | |
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 "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; |
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 "stdafx.h" | |
#include <windows.h> | |
#include <iomanip> | |
#include <iostream> | |
using namespace std; | |
int main() | |
{ | |
setlocale(LC_ALL, "Rus"); | |
srand(time(0)); |
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 "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; |
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 "stdafx.h" | |
#include <iomanip> | |
#include <iostream> | |
using namespace std; | |
const int n=6; | |
const int m=6; | |
struct funk |
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
// 312.cpp: определяет точку входа для консольного приложения. | |
// | |
#include "stdafx.h" | |
#include <iomanip> | |
#include <iostream> | |
using namespace std; | |
const int str=3; |
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
<?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 { |