Skip to content

Instantly share code, notes, and snippets.

View Igor4er's full-sized avatar
💭
Мурманский полуостров

Ihor Cherednichenko Igor4er

💭
Мурманский полуостров
View GitHub Profile
@Igor4er
Igor4er / main.cpp
Last active November 13, 2023 18:00
RS9
#include <iostream>
#include <cstdlib>
#include <ctime>
const int SIZE = 64;
int main() {
int arr[SIZE];
int new_arr[SIZE/4];
std::srand(std::time(NULL));
@Igor4er
Igor4er / main.cpp
Last active November 13, 2023 13:16
Ig4er's GUI Calculator
#if defined(UNICODE) && !defined(_UNICODE)
#define _UNICODE
#elif defined(_UNICODE) && !defined(UNICODE)
#define UNICODE
#endif
#include <tchar.h>
#include <windows.h>
#include <iostream>
#include <string>
@Igor4er
Igor4er / main.cpp
Created September 13, 2023 06:38
LNU: Programming: Lab 2
#include <iostream>
#include <math.h>
#include <windows.h>
using namespace std;
int main() {
SetConsoleOutputCP(1251);
while (true) {