Untitled

 avatar
unknown
plain_text
2 years ago
481 B
4
Indexable
// ConsoleApplication38.cpp : Этот файл содержит функцию "main". Здесь начинается и заканчивается выполнение программы.
//
#include <string>
#include <iostream>
using namespace std;
int disc(int a, int b, int c) {
	int d;
	d = b * b - 4 * a * c;
	if (d > 0) return 2;
	if (d == 0) return 1;
	if (d < 0) return 0;
}
int main(){
	int a, b, c;
	cin >> a >> b >> c;
	cout << disc(a,b,c);

	
}

Editor is loading...