/**
 *	1차 방정식
 *	@param a, b, c
 */
function linearEquation(a, b, c){
	var xx = (b*c)/a;
	return xx
}
Posted by august5pm
,