README.md

Learn C++ projects.

Libreris

<unistd> // задержка
sleep(1);

<cmath> // matem libreris
pow(a, b);

caut << boolalpha; 		  // for true or false

((x == s) ? true : false) // для сравнения true = x == s, false = x != s 

stat filename 			  // информация о файле

setprecision(5); // точность дробной части вещественного числа

exit(0); 		 // fast end program

system("clear"); // run terminal command "clear"

break;			 // end cycle and exit from it

./main > out.txt // when program is running, output is writing in out.txt

#include <ctime> // for function time
srand(time(0));  // set start for random
rand() % 50 	 // generate random from 0 to 50
Описание

Repisitory for C++ project.

Конвейеры
0 успешных
0 с ошибкой