Skip to content

Instantly share code, notes, and snippets.

View anjoismysign's full-sized avatar

Luis Benavides-Naranjo anjoismysign

  • Greenville, South Carolina
View GitHub Profile
@anjoismysign
anjoismysign / gist:7957f3d7fa521d08a00c1707cf48112b
Last active October 22, 2020 04:57
10/16 Assignment Algebra 2 (1.2 version)
public class October16Assignment{
public static void main(String []args){
double a = 15;
int term = 11;
boolean ar = true;
////////////////////////////
//Updated on October 21st//
import java.lang.Math;
public class QuadraticEqRoots{
public static int gcd(int a,int b){
int res = 0;
while (b > 0){
int temp = b;
b = a % b;
a = temp;