mirror of
https://github.com/kuhyx/testsAndMisc-archive.git
synced 2026-07-04 13:23:01 +02:00
8 lines
223 B
C
8 lines
223 B
C
|
|
#pragma once
|
||
|
|
#include <string>
|
||
|
|
|
||
|
|
void print(const std::string s);
|
||
|
|
float getDelta(float a, float b, float c);
|
||
|
|
float calculateFirstTerm(float a, float b, float delta);
|
||
|
|
float calculateSecondTerm(float a, float b, float delta);
|