1
2
3
4
5
6
7
8
/**
 *  1차 방정식
 *  @param a, b, c
 */
function linearEquation(a, b, c){
    var xx = (b*c)/a;
    return xx
}
Posted by august5pm
,