From 82e6cf7d1046d6cee16f7e8b044ec33e7ec6c4b7 Mon Sep 17 00:00:00 2001 From: Nguyễn Gia Phong Date: Sun, 16 Feb 2020 14:26:55 +0700 Subject: [usth] Numerical Method is MATH2.4 --- usth/MATH2.4/hw/linear | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100755 usth/MATH2.4/hw/linear (limited to 'usth/MATH2.4/hw/linear') diff --git a/usth/MATH2.4/hw/linear b/usth/MATH2.4/hw/linear new file mode 100755 index 0000000..fad7e67 --- /dev/null +++ b/usth/MATH2.4/hw/linear @@ -0,0 +1,11 @@ +#!/usr/bin/env octave +disp ("Solve quadratic equation ax + b = 0"); +a = input ("a = "); +while (a == 0) + disp ("a must be nonzero"); + a = input ("a = "); +end +b = input ("b = "); + +disp ("The two solutions of the given linear equation is:"); +x = -b / a -- cgit 1.4.1