Lab1

Run Settings
LanguageC
Language Version
Run Command
#include <stdio.h> #include <math.h> int main(void) { float a = 1, b = 10, c = 2; float delta = (b*b) - (4 * a * c); float x1 = ( -b + sqrt(delta)) / (2 * a); float x2 = (-b - sqrt(delta)) / (2 * a); printf("resultado1: %f \n ", x1); printf("resultado 2: %f \n ", x2); return 0; }
Editor Settings
Theme
Key bindings
Full width
Lines