19 lines
255 B
C++
19 lines
255 B
C++
#pragma once
|
|
|
|
#include <iostream>
|
|
|
|
using namespace std;
|
|
|
|
#define loop while (1)
|
|
|
|
using LabF = function<void()>;
|
|
|
|
void lab1();
|
|
void lab2();
|
|
void lab3();
|
|
void lab4();
|
|
void lab5();
|
|
void lab6();
|
|
|
|
double lab12_f1(double x);
|
|
double lab12_f2(double v, double w); |