bottleros/Userland/SampleCodeModule/shell/commands/quadratic.c

47 lines
1.2 KiB
C

// This is a personal academic project. Dear PVS-Studio, please check it.
// PVS-Studio Static Code Analyzer for C, C++ and C#: http://www.viva64.com
#include "libc.h"
#include "quadratic.h"
#include "shell.h"
// void quadratic(double a, double b, double c) {
void quadratic(int argc, char *argv[]) {
if (argc != 4) {
printStringLen("quadratic receives 3 doubles\n", 30);
sys_exit();
}
double sol1, sol2, a = atof(argv[1]), b = atof(argv[2]), c = atof(argv[3]);
if (a == 0) {
printStringLen("First argument cannot be 0\n", 28);
sys_exit();
}
int cond = quadSolver(a, b, c, &sol1, &sol2);
if (cond == 0) {
printStringLen("Not real!\n", 11);
sys_exit();
}
char buffer[30] = {0};
printStringLen("Roots for ", 11);
ftoa(a, buffer, 10);
printString(buffer);
printStringLen("x^2 + ", 7);
ftoa(b, buffer, 10);
printString(buffer);
printString("x + ");
ftoa(c, buffer, 10);
printString(buffer);
newline();
ftoa(sol1, buffer, 10);
printString(buffer);
printStringLen(" and ", 6);
char buffer2[30] = {0};
ftoa(sol2, buffer2, 10);
printString(buffer2);
addEOF();
newline();
sys_exit();
}