strcpy(szBuffer, sBuffer);

so many questions given you by Hungarian notation

By bvs23bkv33, 2017-06-09 08:24:49
# Create vpc peering connection
response = ec2.delete_vpc_peering_connection(peer_connection_id)

a part of AWS Landing Zone solution

By Amazon Solutions, 2019-07-10 12:49:42
/// <summary>
/// Returns true if any component of of Vector3 v is negative
/// </summary>
public static bool Ext_IsNegative(this Vector3 v)
{
    return v.x < 0f && v.y < 0f && v.z < 0f;
}

Either the description is wrong or the method in itself

By SwagridOfficial, 2017-12-13 13:00:34
Public Shared Function CompeleteDateStr(DateStr As String) As String
    'MBS 96-09-25: High Caliber DataEntry
    Dim DateVal = CType(DateStr, Integer)
    If DateVal < 1 Then Return ""
    If DateVal < maxDay Then 'DayOnly
        Return MakeJalaliDate(curYear, curMonth, DateVal, _4DigitYear)
    ElseIf DateVal > maxDay Then
        Dim YearPiece? As Short = Nothing, MonthPiece? As Byte = Nothing, DayPiece As Byte
        Select Case DateVal
            Case Is < 100
                MonthPiece = (DateVal \ 10) Mod 10
                DayPiece = DateVal Mod 10
                If IsValidMonth(MonthPiece) AndAlso IsValidDay(DayPiece, MonthPiece, curYear) Then Return MakeJalaliDate(curYear, MonthPiece, DayPiece, _4DigitYear)
            Case Is < 1000
                MonthPiece = DateVal \ 10
                DayPiece = DateVal Mod 10
                If IsValidMonth(MonthPiece) AndAlso IsValidDay(DayPiece, MonthPiece, curYear) Then Return MakeJalaliDate(curYear, MonthPiece, DayPiece, _4DigitYear)
                MonthPiece = (DateVal \ 100) Mod 10
                DayPiece = DateVal Mod 100
                If IsValidMonth(MonthPiece) AndAlso IsValidDay(DayPiece, MonthPiece, curYear) Then Return MakeJalaliDate(curYear, MonthPiece, DayPiece, _4DigitYear)
                DayPiece = DateVal \ 10
                MonthPiece = DateVal Mod 10
                If IsValidMonth(MonthPiece) AndAlso IsValidDay(DayPiece, MonthPiece, curYear) Then Return MakeJalaliDate(curYear, MonthPiece, DayPiece, _4DigitYear)
                DayPiece = (DateVal \ 100) Mod 10
                MonthPiece = DateVal Mod 100
                If IsValidMonth(MonthPiece) AndAlso IsValidDay(DayPiece, MonthPiece, curYear) Then Return MakeJalaliDate(curYear, MonthPiece, DayPiece, _4DigitYear)
            Case Is < 10000
                MonthPiece = DateVal \ 100
                DayPiece = DateVal Mod 100
                If IsValidMonth(MonthPiece) AndAlso IsValidDay(DayPiece, MonthPiece, curYear) Then Return MakeJalaliDate(curYear, MonthPiece, DayPiece, _4DigitYear)
                MonthPiece = DateVal Mod 100
                DayPiece = DateVal \ 100
                If IsValidMonth(MonthPiece) AndAlso IsValidDay(DayPiece, MonthPiece, curYear) Then Return MakeJalaliDate(curYear, MonthPiece, DayPiece, _4DigitYear)
                DayPiece = DateVal \ 100
                MonthPiece = DateVal Mod 100
                If IsValidMonth(MonthPiece) AndAlso IsValidDay(DayPiece, MonthPiece, curYear) Then Return MakeJalaliDate(curYear, MonthPiece, DayPiece, _4DigitYear)
                DayPiece = DateVal Mod 100
                MonthPiece = DateVal \ 100
                If IsValidMonth(MonthPiece) AndAlso IsValidDay(DayPiece, MonthPiece, curYear) Then Return MakeJalaliDate(curYear, MonthPiece, DayPiece, _4DigitYear)
                MonthPiece = (DateVal \ 10) Mod 10
                YearPiece = DateVal \ 100
                If IsValidMonth(MonthPiece) Then
                    DayPiece = DateVal Mod 10
                    If IsValidDay(DayPiece, MonthPiece, YearPiece) Then Return MakeJalaliDate(YearPiece, MonthPiece, DayPiece, _4DigitYear)
                Else
                    MonthPiece = (DateVal \ 100) Mod 10
                    YearPiece = DateVal Mod 100
                    DayPiece = DateVal \ 1000
                    If IsValidMonth(MonthPiece) AndAlso IsValidDay(DayPiece, MonthPiece, YearPiece) Then Return MakeJalaliDate(YearPiece, MonthPiece, DayPiece, _4DigitYear)
                End If
            Case Is < 100000
                Dim DaySize As Byte = 2
                MonthPiece = (DateVal Mod 1000) \ 10
                If Not IsValidMonth(MonthPiece) Then
                    MonthPiece = (DateVal \ 100) Mod 10
                    DaySize = 1
                    If Not IsValidMonth(MonthPiece) Then Return ""
                End If
                YearPiece = DateVal \ 1000
                DayPiece = DateVal Mod 10 ^ DaySize
                If IsValidDay(DayPiece, MonthPiece, YearPiece) Then Return MakeJalaliDate(YearPiece, MonthPiece, DayPiece)
                YearPiece = DateVal Mod 100
                DayPiece = DateVal \ (10000 \ (10 ^ DaySize))
                If IsValidDay(DayPiece, MonthPiece, YearPiece) Then Return MakeJalaliDate(YearPiece, MonthPiece, DayPiece)
            Case Is < 1000000
                MonthPiece = (DateVal Mod 10000) \ 100
                If IsValidMonth(MonthPiece) Then
                    YearPiece = DateVal \ 10000
                    DayPiece = DateVal Mod 100
                    If IsValidDay(DayPiece, MonthPiece, YearPiece) Then Return MakeJalaliDate(YearPiece, MonthPiece, DayPiece, _4DigitYear)
                    YearPiece = DateVal Mod 100
                    DayPiece = DateVal \ 10000
                    If IsValidDay(DayPiece, MonthPiece, YearPiece) Then Return MakeJalaliDate(YearPiece, MonthPiece, DayPiece, _4DigitYear)
                End If
                YearPiece = DateVal \ 100
                If YearPiece > 1300 AndAlso YearPiece < 1500 Then
                    MonthPiece = (DateVal \ 10) Mod 10
                    DayPiece = DateVal Mod 10
                    If IsValidMonth(MonthPiece) AndAlso IsValidDay(DayPiece, MonthPiece, YearPiece) Then Return MakeJalaliDate(YearPiece, MonthPiece, DayPiece, _4DigitYear)
                End If
                YearPiece = DateVal Mod 10000
                If YearPiece > 1300 AndAlso YearPiece < 1400 Then
                    DayPiece = DateVal \ 100000
                    MonthPiece = (DateVal \ 10000) Mod 10
                    If IsValidMonth(MonthPiece) AndAlso IsValidDay(DayPiece, MonthPiece, YearPiece) Then Return MakeJalaliDate(YearPiece + If(_4DigitYear, 0, -1300), MonthPiece, DayPiece, _4DigitYear)
                End If
            Case Is < 10000000
                Dim DaySize As Byte = 2
                MonthPiece = (DateVal Mod 1000) \ 10
                If Not IsValidMonth(MonthPiece) Then
                    MonthPiece = (DateVal \ 100) Mod 10
                    DaySize = 2
                    If Not IsValidMonth(MonthPiece) Then Return ""
                End If
                YearPiece = DateVal \ 1000
                DayPiece = DateVal Mod 10 ^ DaySize
                If IsValidDay(DayPiece, MonthPiece, YearPiece) Then Return MakeJalaliDate(YearPiece, MonthPiece, DayPiece)
                YearPiece = DateVal Mod 10000
                DayPiece = DateVal \ (100000 * (10 ^ DaySize))
                If IsValidDay(DayPiece, MonthPiece, YearPiece) Then Return MakeJalaliDate(YearPiece, MonthPiece, DayPiece)
            Case Is < 100000000
                MonthPiece = (DateVal Mod 10000) \ 100 '13961229
                If IsValidMonth(MonthPiece) Then
                    YearPiece = DateVal \ 10000
                    DayPiece = DateVal Mod 100
                    If IsValidDay(DayPiece, MonthPiece, YearPiece) Then Return MakeJalaliDate(YearPiece, MonthPiece, DayPiece, _4DigitYear)
                    YearPiece = DateVal Mod 10000
                    DayPiece = DateVal \ 1000000
                    If IsValidDay(DayPiece, MonthPiece, YearPiece) Then Return MakeJalaliDate(YearPiece, MonthPiece, DayPiece, _4DigitYear)
                End If
        End Select
        Return ""
    End If
End Function

this code is so wrong in so many different levels

By NoobProger, 2017-12-20 12:37:08

// enum - full enumeration of knapsack solutions
// (C) Joshua Knowles

#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include <stdbool.h>

FILE *fp;  // file pointer for reading the input files
int Capacity;     // capacity of the knapsack (total weight that can be stored)
int Nitems;    // number of items available
int *item_weights;  // vector of item weights
int *item_values;  // vector of item profits or values
int *temp_indexes;  // list of temporary item indexes for sorting items by value/weight
int QUIET=0; // this can be set to 1 to suppress output

extern void read_knapsack_instance(char *filename);
extern void print_instance();
extern void sort_by_ratio();
extern int check_evaluate_and_print_sol(int *sol,  int *total_value, int *total_weight);
void enumerate();
int next_binary(int *str, int Nitems);

int main(int argc, char *argv[])
{
  read_knapsack_instance(argv[1]);
  print_instance();
  enumerate();
  return(0);
}

void enumerate()
{
  // Do an exhaustive search (aka enumeration) of all possible ways to pack
  // the knapsack.
  // This is achieved by creating every binary solution vector of length Nitems.
  // For each solution vector, its value and weight is calculated.


  int i;  // item index
  int solution[Nitems+1];   // (binary) solution vector representing items packed
  int best_solution[Nitems+1];  // (binary) solution vector for best solution found
  int best_value; // total value packed in the best solution
  double j=0;
  int total_value, total_weight; // total value and total weight of current knapsack solution
  int infeasible;  // 0 means feasible; -1 means infeasible (violates the capacity constraint)

  // set the knapsack initially empty
  for(i=1;i<=Nitems;i++)
    {
      solution[i]=0;
    }
  QUIET=1;
  best_value=0;

 while(!(next_binary(&solution[1], Nitems)))
    {

      /* ADD CODE IN HERE TO KEEP TRACK OF FRACTION OF ENUMERATION DONE */

          // calculates the value and weight and feasibility:
      infeasible=check_evaluate_and_print_sol(solution, &total_value, &total_weight);  
      /* ADD CODE IN HERE TO KEEP TRACK OF BEST SOLUTION FOUND*/

    }
 /* ADD CODE TO PRINT OUT BEST SOLUTION */

}


int next_binary(int *str, int Nitems)
{
  // Called with a binary string of length Nitems, this 
  // function adds "1" to the string, e.g. 0001 would turn to 0010.
  // If the string overflows, then the function returns 1, else it returns 0.
  int i=Nitems-1;
  while(i>=0)
    {
      if(str[i]==1)
	{
	  str[i]=0;
	  i--;
	}
      else
	{
	  str[i]=1;
	  break;
	}
    }
  if(i==-1)
    {
      return(1);
    }
  else
    {
      return(0);
    }
}

A genuine UoM lab.

By Joshua Knowles, 2018-02-23 10:58:03
public static function getUser(){
    return \App\Models\User::all();
}
By mamadSiah, 2022-02-23 14:35:19
def _take_items_from_list_and_put_them_into_string(self, list):
    string = ''
    for element in list:
        string += element + ','
    if len(string) > 0 and string[-1] == ',':
        string = string[0:-1]
    return string
By JK, 2017-12-13 13:54:43
public class CustomBoolean {

    private Container<java.lang.Boolean> booleanContainer;

    public CustomBoolean(Container<Boolean> booleanContainer) {
        CustomBoolean custom_boolean = getThis();
        custom_boolean.booleanContainer = booleanContainer;
    }

    private <T extends Object> T getThis() {
        return (T) (Object) (T) this;
    }

    public Container<Boolean> getBooleanContainer() {
        return booleanContainer;
    }

    public static CustomBoolean create(Boolean value) {
        return new CustomBoolean(Container.builder().setValue(true).build());
    }

    public static void main(String[] args) {
        System.out.println(CustomBoolean.create(Boolean.TRUE).getBooleanContainer().getObject());
    }

    public static class Container<T extends Object> {

        private T object = null;

        private Container(T object) {
            Container<T> _this = getThis();
            _this.object = (T) (Object) object;
        }

        private <T extends Object> T getThis() {
            return (T) (Object) (T) this;
        }

        public static Builder builder() {
            return new Builder();
        }

        public T getObject() {
            return object;
        }

        public static class Builder<T extends Object> {
            private T value;

            public Builder<T> setValue(T value) {
                Container<T> _this = getThis();
                _this.object = (T) (Object) value;
                return this;
            }

            private <T extends Object> T getThis() {
                return (T) (Object) (T) this;
            }

            public Container build() {
                return new Container(value);
            }
        }
    }
} // Dort#0001

trolled

By Dort, 2022-03-24 21:41:54
if (!response ||
    !response.data ||
    !response.data.success ||
    response.data.success == false ) {
        //process stuff
}

Not talking about the '===' warning, here

By Anonymous, 2020-12-02 12:31:00
if (cookiesBannerHeight !== 0 && isMobile) {
      style = {
        top: cookiesBannerHeight === 0 ? 0 : cookiesBannerHeight
      }
}
By Kubus, 2018-02-28 11:00:11
void MagicUnit::getSomeVoltage(std::uint64_t w_data, double &val)
{
    std::uint64_t r_data = 0;
    hwRead((int)Address::Voltage, 3, w_data, 2, &r_data);
    val = r_data;
    val /= 16; // shit right 4 bits
    val *= 0.004;
    val -= 8.192;
}
By Anonymous, 2019-03-11 08:43:52
 elsif ( $att =~ m/!!ARRAY!!/ ) {    # Updated to allow us to get data from an Array - 
        &Debug("get_value_from_hash:: parsing the ARRAY attribute - $att");
        my ( $key1, $key2, $key3, $key4, $key5, $key6 ) = split( /\./, $att );

        #&Debug("get_value_from_hash:: key1=$key1, key2=$key2, key3=$key3, key4=$key4, key5=$key5");
        if ( defined $key6 ) {
            if ( $key5 =~ m/!!ARRAY!!/ ) {
                for my $item ( @{ $hash->{$key1}->{$key2}->{$key3}->{$key4} } ) { $value = $item->{$key6}; }
            }
            elsif ( $key4 =~ m/!!ARRAY!!/ ) {
                for my $item ( @{ $hash->{$key1}->{$key2}->{$key3} } ) { $value = $item->{$key5}->{$key6}; }
            }
            elsif ( $key3 =~ m/!!ARRAY!!/ ) {
                for my $item ( @{ $hash->{$key1}->{$key2} } ) { $value = $item->{$key4}->{$key5}->{$key6}; }
            }
            elsif ( $key2 =~ m/!!ARRAY!!/ ) {
                for my $item ( @{ $hash->{$key1} } ) { $value = $item->{$key3}->{$key4}->{$key5}->{$key6}; }
            }
            elsif ( $key1 =~ m/!!ARRAY!!/ ) {
                for my $item ( @{$hash} ) { $value = $item->{$key2}->{$key3}->{$key4}->{$key5}->{$key6}; }
            }
        }
        elsif ( defined $key5 ) {
            if ( $key4 =~ m/!!ARRAY!!/ ) {
                for my $item ( @{ $hash->{$key1}->{$key2}->{$key3} } ) { $value = $item->{$key5}; }
            }
            elsif ( $key3 =~ m/!!ARRAY!!/ ) {
                for my $item ( @{ $hash->{$key1}->{$key2} } ) { $value = $item->{$key4}->{$key5}; }
            }
            elsif ( $key2 =~ m/!!ARRAY!!/ ) {
                for my $item ( @{ $hash->{$key1} } ) { $value = $item->{$key3}->{$key4}->{$key5}; }
            }
            elsif ( $key1 =~ m/!!ARRAY!!/ ) {
                for my $item ( @{$hash} ) { $value = $item->{$key1}->{$key3}->{$key4}->{$key5}; }
            }
        }
        elsif ( defined $key4 ) {
            if ( $key3 =~ m/!!ARRAY!!/ ) {
                for my $item ( @{ $hash->{$key1}->{$key2} } ) { $value = $item->{$key4}; }
            }
            elsif ( $key2 =~ m/!!ARRAY!!/ ) {
                for my $item ( @{ $hash->{$key1} } ) { $value = $item->{$key3}->{$key4}; }
            }
            elsif ( $key1 =~ m/!!ARRAY!!/ ) {
                for my $item ( @{$hash} ) { $value = $item->{$key1}->{$key3}->{$key4}; }
            }
        }
        elsif ( defined $key3 ) {
            if ( $key2 =~ m/!!ARRAY!!/ ) {
                for my $item ( @{ $hash->{$key1} } ) { $value = $item->{$key3}; }
            }
            elsif ( $key1 =~ m/!!ARRAY!!/ ) {
                for my $item ( @{$hash} ) { $value = $item->{$key3}; }
            }
        }
        elsif ( defined $key2 ) {
            if ( $key1 =~ m/!!ARRAY!!/ ) {
                for my $item ( @{$hash} ) { $value = $item->{$key2}; }
            }
        }
    }
    elsif ( $att =~ m/!!HITS\[\d+\]!!/ ) {
        &Debug("get_value_from_hash:: parsing the HITS attribute - $att");
        my $id = $att;
        $id =~ s/!!HITS\[(\d+)\]!!.*/$1/;
        $att =~ s/!!HITS\[\d+\]!!\.//;
        &Debug("get_value_from_hash:: parsing the attribute - $att");
        my ( $key1, $key2, $key3, $key4, $key5, $key6 ) = split( /\./, $att );

        #&Debug("get_value_from_hash:: id=$id, key1=$key1, key2=$key2, key3=$key3, key4=$key4, key5=$key5");
        if ( defined $key6 ) {
            $value = $$hash{hits}{hits}[$id]{$key1}{$key2}{$key3}{$key4}{$key5}{$key6};
        }
        elsif ( defined $key5 ) {
            $value = $$hash{hits}{hits}[$id]{$key1}{$key2}{$key3}{$key4}{$key5};
        }
        elsif ( defined $key4 ) {
            $value = $$hash{hits}{hits}[$id]{$key1}{$key2}{$key3}{$key4};
        }
        elsif ( defined $key3 ) {
            $value = $$hash{hits}{hits}[$id]{$key1}{$key2}{$key3};
        }
        elsif ( defined $key2 ) {
            $value = $$hash{hits}{hits}[$id]{$key1}{$key2};
        }
    }
    elsif ( $att =~ m/!!DELIMITER!!.+!!/ ) {
        &Debug("get_value_from_hash:: parsing the DELIMITER attribute - $att");
        my $delimiter = $att;
        $delimiter =~ s/!!DELIMITER!!(.*)!!.*/$1/;
        $att =~ s/!!DELIMITER!!.+!!//;
        &Debug("get_value_from_hash:: parsing the attribute - $att");
        my ( $key1, $key2, $key3, $key4, $key5, $key6 ) = split( $delimiter, $att );

        #        &Debug("get_value_from_hash:: key1=$key1, key2=$key2, key3=$key3, key4=$key4, key5=$key5, key6=$key6");
        if ( defined $key6 ) {
            $value = $$hash{$key1}{$key2}{$key3}{$key4}{$key5}{$key6};
        }
        elsif ( defined $key5 ) {
            $value = $$hash{$key1}{$key2}{$key3}{$key4}{$key5};
        }
        elsif ( defined $key4 ) {
            $value = $$hash{$key1}{$key2}{$key3}{$key4};
        }
        elsif ( defined $key3 ) {
            $value = $$hash{$key1}{$key2}{$key3};
        }
        elsif ( defined $key2 ) {
            $value = $$hash{$key1}{$key2};
        }
    }
    else {
        &Debug("get_value_from_hash:: parsing the attribute - $att");
        my ( $key1, $key2, $key3, $key4, $key5, $key6 ) = split( /\./, $att );

        #&Debug("get_value_from_hash:: key1=$key1, key2=$key2, key3=$key3, key4=$key4, key5=$key5");
        if ( defined $key6 ) {
            $value = $$hash{$key1}{$key2}{$key3}{$key4}{$key5}{$key6};
        }
        elsif ( defined $key5 ) {
            $value = $$hash{$key1}{$key2}{$key3}{$key4}{$key5};
        }
        elsif ( defined $key4 ) {
            $value = $$hash{$key1}{$key2}{$key3}{$key4};
        }
        elsif ( defined $key3 ) {
            $value = $$hash{$key1}{$key2}{$key3};
        }
        elsif ( defined $key2 ) {
            $value = $$hash{$key1}{$key2};
        }
    }

When you try to debug, why value is not filled, and find this...

By Anonymous, 2022-01-04 07:00:11

"  ".split(" ");

Very weird code found multiple times in old code base.

By heldt, 2017-12-12 12:03:14
import java.util.Scanner;

public class ConnectFour

{

    public static void main(String [] args) {

        Scanner scan;

        scan = new Scanner(System.in);

        boolean win = false;

        boolean oneone = false;

        boolean onetwo = false;

        boolean onethree = false;

        boolean onefour = false;

        boolean onefive = false;

        boolean onesix = false;

        boolean oneseven = false;

        boolean twoone = false;

        boolean twotwo = false;

        boolean twothree = false;

        boolean twofour = false;

        boolean twofive = false;

        boolean twosix = false;

        boolean twoseven = false;

        boolean threeone = false;

        boolean threetwo = false;

        boolean threethree = false;

        boolean threefour = false;

        boolean threefive = false;

        boolean threesix = false;

        boolean threeseven = false;

        boolean fourone = false;

        boolean fourtwo = false;

        boolean fourthree = false;

        boolean fourfour = false;

        boolean fourfive = false;

        boolean foursix = false;

        boolean fourseven = false;

        boolean fiveone = false;

        boolean fivetwo = false;

        boolean fivethree = false;

        boolean fivefour = false;

        boolean fivefive = false;

        boolean fivesix = false;

        boolean fiveseven = false;

        boolean sixone = false;

        boolean sixtwo = false;

        boolean sixthree = false;

        boolean sixfour = false;

        boolean sixfive = false;

        boolean sixsix = false;

        boolean sixseven = false;

        if(win = false) {

if(oneone = true) {

   if(onetwo = true) {

      if(onethree = true) {

          if(onefour = true) {

             winner = true;

          }

        }

     }

   else if(twotwo = true) {

       if(threethree = true) {

           if(fourfour = true) {

               winner = true;

            }

        }

    }

   else if(twoone = true) {

       if(threeone = true) {

           if(fourone = true) {

               winner = true;

            }

        }

    }

}

if(onetwo = true) {

    if(oneone = true) {

        if(onethree = true) {

            if(onefour = true) {

                winner = true;

            }

        }

    }

    if(onethree = true) {

        if(onefour = true) {

            if(onefive = true) {

                winner = true;

            }

        }

    }

    if(twothree = true) {

        if(threefour = true) {

            if(fourfive = true) {

                winner = true;

            }

        }

    }

    if(twotwo = true) {

        if(threetwo = true) {

            if(fourtwo = true) {

                winner = true;

            }

        }

    }

}

if(onethree = true) {

    if(oneone = true) {

        if(onetwo = true) {

            if(onefour = true) {

                winner = true;

            }

        }

    }

    if(onetwo = true) {

        if(onefour = true) {

            if(onefive = true) {

                winner = true;

            }

        }

    }

    if(onefour = true) {

        if(onefive = true) {

            if(onesix = true) {

                winner = true;

            }

        }

    }

    if(twofour = true) {

        if(threefive = true) {

            if(foursix = true) {

                winner = true;

            }

        }

    }

    if(twothree = true) {

        if(threethree = true) {

            if(fourthree = true) {

                winner = true;

            }

        }

    }

}

if(onefour = true) {

    if(oneone = true) {

        if(onetwo = true) {

            if(onethree = true) {

                winner = true;

            }

        }

    }

    if(onetwo = true) {

        if(onethree = true) {

            if(onefive = true) {

                winner = true;

            }

        }

    }

    if(onethree = true) {

        if(onefive = true) {

            if(onesix = true) {

                winner = true;

            }

        }

    }

    if(onefive = true) {

        if(onesix = true) {

            if(oneseven = true) {

                winner = true;

            }

        }

    }

    if(twofive = true) {

        if(threesix = true) {

            if(fourseven = true) {

                winner = true;

            }

        }

    }

    if(twothree = true) {

        if(threetwo = true) {

            if(fourone = true) {

                winner = true;

            }

        }

    }

    if(twofour = true) {

        if(threefour = true) {

            if(fourfour = true) {

                winner = true;

            }

        }

    }

}

if(onefive = true) {

    if(onetwo = true) {

        if(onethree = true) {

            if(onefour = true) {

                winner = true;

            }

        }

    }

    if(onethree = true) {

        if(onefour = true) {

            if(onesix = true) {

                winner = true;

            }

        }

    }

    if(onefour = true) {

        if(onesix = true) {

            if(oneseven = true) {

                winner = true;

            }

        }

    }

    if(twofive = true) {

        if(threefive = true) {

            if(fourfive = true) {

                winner = true;

            }

        }

    }

    if(twofour = true) {

        if(threethree = true) {

            if(fourtwo = true) {

                winner = true;

            }

        }

    }

}

if(onesix = true) {

    if(onethree = true) {

        if(onefour = true) {

            if(onefive = true) {

                winner = true;

            }

        }

    }

    if(onefour = true) {

        if(onefive = true) {

            if(oneseven = true) {

                winner = true;

            }

        }

    }

    if(twosix = true) {

        if(threesix = true) {

            if(foursix = true) {

                winner = true;

            }

        }

    }

    if(twofive = true) {

        if(threefour = true) {

            if(fourthree = true) {

                winner = true;

            }

        }

    }

}

if(oneseven = true) {

    if(onefour = true) {

        if(onefive = true) {

            if(onesix = true) {

                winner = true;

            }

        }

    }

    if(twoseven = true) {

        if(threeseven = true) {

            if(fourseven = true) {

                winner = true;

            }

        }

    }

    if(twosix = true) {

        if(threefive = true) {

            if(fourfour = true) {

                winner = true;

            }

        }

    }

}

if(twotwo = true) {

    if(twoone = true) {

        if(twothree = true) {

            if(twofour = true) {

                winner = true;

            }

        }

    }

    if(twothree = true) {

        if(twofour = true) {

            if(twofive = true) {

                winner = true;

            }

        }

    }

    if(threetwo = true) {

        if(fourtwo = true) {

            if(fivetwo = true) {

                winner = true;

            }

        }

    }

    if(onetwo = true) {

        if(threetwo = true) {

            if(fourtwo = true) {

                winner = true;

            }

        }

    }

    if(oneone = true) {

        if(threethree = true) {

            if(fourfour = true) {

                winner = true;

            }

        }

    }

    if(threethree = true) {

        if(fourfour = true) {

            if(fivefive = true) {

                winner = true;

            }

        }

    }

}

if(twofour = true) {

    if(onethree = true) {

        if(threefive = true) {

            if(foursix = true) {

                winner = true;

            }

        }

    }

    if(threethree = true) {

        if(fourtwo = true) {

            if(fiveone = true) {

                winner = true;

            }

        }

    }

    if(onefive = true) {

        if(threethree = true) {

            if(fourtwo = true) {

                winner = true;

            }

        }

    }

    if(onethree = true) {

        if(threefive = true) {

            if(foursix = true) {

                winner = true;

            }

        }

    }

    if(threefive = true) {

        if(foursix = true) {

            if(fiveseven = true) {

                winner = true;

            }

        }

    }

    if(onefour = true) {

        if(threefour = true) {

            if(fourfour = true) {

                winner = true;

            }

        }

    }

    if(threefour = true) {

        if(fourfour = true) {

            if(fivefour = true) {

                winner = true;

            }

        }

    }

    if(twoone = true) {

        if(twotwo = true) {

            if(twothree = true) {

                winner = true;

            }

        }

    }

    if(twotwo = true) {

        if(twothree = true) {

            if(twofive = true) {

                winner = true;

            }

        }

    }

    if(twothree = true) {

        if(twofive = true) {

            if(twosix = true) {

                winner = true;

            }

        }

    }

    if(twofive = true) {

        if(twosix = true) {

            if(twoseven = true) {

                winner = true;

            }

        }

    }

}

if(twosix = true) {

    if(twothree = true) {

        if(twofour = true) {

            if(twofive = true) {

                winner = true;

            }

        }

    }

    if(twofour = true) {

        if(twofive = true) {

            if(twoseven = true) {

                winner = true;

            }

        }

    }

    if(onesix = true) {

        if(threesix = true) {

            if(foursix = true) {

                winner = true;

            }

        }

    }

    if(threesix = true) {

        if(foursix = true) {

            if(fivesix = true) {

                winner = true;

            }

        }

    }

    if(threefive = true) {

        if(fourfour = true) {

            if(fivethree = true) {

                winner = true;

            }

        }

    }

    if(fourfour = true) {

        if(fivethree = true) {

            if(oneseven = true) {

                winner = true;

            }

        }

    }

}

if(threeone = true) {

    if(fourone = true) {

        if(fiveone = true) {

            if(sixone = true) {

                winner = true;

            }

        }

    }

    if(oneone = true) {

        if(twoone = true) {

            if(fourone = true) {

                winner = true;

            }

        }

    }

    if(twoone = true) {

        if(fourone = true) {

            if(fiveone = true) {

                winner = true;

            }

        }

    }

    if(twofour = true) {

        if(threefive = true) {

            if(foursix = true) {

                winner = true;

            }

        }

    }

    if(threetwo = true) {

        if(threethree = true) {

            if(threefour = true) {

                winner = true;

            }

        }

    }

}

if(threethree = true) {

    if(oneone = true) {

        if(twotwo = true) {

            if(fourfour = true) {

                winner = true;

            }

        }

    }

    if(twotwo = true) {

        if(fourfour = true) {

            if(fivefive = true) {

                winner = true;

            }

        }

    }

    if(fourfour = true) {

        if(fivefive = true) {

            if(sixsix = true) {

                winner = true;

            }

        }

    }

    if(onethree = true) {

        if(twothree = true) {

            if(fourthree = true) {

                winner = true;

            }

        }

    }

    if(twothree = true) {

        if(fourthree = true) {

            if(fivethree = true) {

                winner = true;

            }

        }

    }

    if(fourthree = true) {

        if(fivethree = true) {

            if(sixthree = true) {

                winner = true;

            }

        }

    }

    if(onefive = true) {

        if(twofour = true) {

            if(fourtwo = true) {

                winner = true;

            }

        }

    }

    if(twofour = true) {

        if(fourtwo = true) {

            if(fiveone = true) {

                winner = true;

            }

        }

    }

    if(threethree = true) {

        if(fourtwo = true) {

            if(fiveone = true) {

                winner = true;

            }

        }

    }

    if(threeone = true) {

        if(threetwo = true) {

            if(threefour = true) {

                winner = true;

            }

        }

    }

    if(threetwo = true) {

        if(threefour = true) {

            if(threefive = true) {

                winner = true;

            }

        }

    }

    if(threefour = true) {

        if(threefive = true) {

            if(threesix = true) {

                winner = true;

            }

        }

    }

}

if(threefive = true) {

    if(onethree = true) {

        if(twofour = true) {

            if(foursix = true) {

                winner = true;

            }

        }

    }

    if(twofour = true) {

        if(foursix = true) {

            if(fiveseven = true) {

                winner = true;

            }

        }

    }

    if(threethree = true) {

        if(fourtwo = true) {

            if(fiveone = true) {

                winner = true;

            }

        }

    }

    if(oneseven = true) {

        if(twosix = true) {

            if(fourfour = true) {

                winner = true;

            }

        }

    }

    if(twosix = true) {

        if(fourfour = true) {

            if(fivethree = true) {

                winner = true;

            }

        }

    }

    if(fourfour = true) {

        if(fivethree = true) {

            if(sixtwo = true) {

                winner = true;

            }

        }

    }

    if(onefive = true) {

        if(twofive = true) {

            if(fourfive = true) {

                winner = true;

            }

        }

    }

    if(twofive = true) {

        if(fourfive = true) {

            if(fivefive = true) {

                winner = true;

            }

        }

    }

    if(fourfive = true) {

        if(fivefive = true) {

            if(sixfive = true) {

                winner = true;

            }

        }

    }

    if(threethree = true) {

        if(fourtwo = true) {

            if(fiveone = true) {

                winner = true;

            }

        }

    }

    if(threetwo = true) {

        if(threethree = true) {

            if(threefour = true) {

                winner = true;

            }

        }

    }

    if(threethree = true) {

        if(threefour = true) {

            if(threesix = true) {

                winner = true;

            }

        }

    }

    if(threefour = true) {

        if(threesix = true) {

            if(threeseven = true) {

                winner = true;

            }

        }

    }

}

if(threeseven = true) {

    if(threefour = true) {

        if(threefive = true) {

            if(threesix = true) {

                winner = true;

            }

        }

    }

    if(sixfour = true) {

        if(fivefive = true) {

            if(foursix = true) {

                winner = true;

            }

        }

    }

    if(oneseven = true) {

        if(twoseven = true) {

            if(fourseven = true) {

                winner = true;

            }

        }

    }

    if(twoseven = true) {

        if(fourseven = true) {

            if(fiveseven = true) {

                winner = true;

            }

        }

    }

    if(fourseven = true) {

        if(fiveseven = true) {

            if(sixseven = true) {

                winner = true;

            }

        }

    }

}

if(fourtwo = true) {

    if(fourone = true) {

        if(fourthree = true) {

            if(fourfour = true) {

                winner = true;

            }

        }

    }

    if(fourthree = true) {

        if(fourfour = true) {

            if(fourfive = true) {

                winner = true;

            }

        }

    }

    if(threeone = true) {

        if(fivethree = true) {

            if(sixfour = true) {

                winner = true;

            }

        }

    }

    if(onetwo = true) {

        if(twotwo = true) {

            if(threetwo = true) {

                winner = true;

            }

        }

    }

    if(twotwo = true) {

        if(threetwo = true) {

            if(fivetwo = true) {

                winner = true;

            }

        }

    }

    if(threetwo = true) {

        if(fivetwo = true) {

            if(sixtwo = true) {

                winner = true;

            }

        }

    }

    if(threethree = true) {

        if(fourtwo = true) {

            if(fiveone = true) {

                winner = true;

            }

        }

    }

    if(fiveone = true) {

        if(threethree = true) {

            if(twofour = true) {

                winner = true;

            }

        }

    }

    if(threethree = true) {

        if(fourtwo = true) {

            if(onefive = true) {

                winner = true;

            }

        }

    }

}

if(fourfour = true) {

    if(oneone = true) {

        if(twotwo = true) {

            if(threethree = true) {

                winner = true;

            }

        }

    }

    if(twotwo = true) {

        if(threethree = true) {

            if(fivefive = true) {

                winner = true;

            }

        }

    }

    if(threethree = true) {

        if(fivefive = true) {

            if(sixsix = true) {

                winner = true;

            }

        }

    }

    if(oneseven = true) {

        if(twosix = true) {

            if(threefive = true) {

                winner = true;

            }

        }

    }

    if(twosix = true) {

        if(threefive = true) {

            if(fivethree = true) {

                winner = true;

            }

        }

    }

    if(threefive = true) {

        if(fivethree = true) {

            if(sixtwo = true) {

                winner = true;

            }

        }

    }

    if(fourone = true) {

        if(fourtwo = true) {

            if(fourthree = true) {

                winner = true;

            }

        }

    }

    if(fourtwo = true) {

        if(fourthree = true) {

            if(fourfive = true) {

                winner = true;

            }

        }

    }

    if(fourthree = true) {

        if(fourfive = true) {

            if(foursix = true) {

                winner = true;

            }

        }

    }

    if(fourfive = true) {

        if(foursix = true) {

            if(fourseven = true) {

                winner = true;

            }

        }

    }

    if(onefour = true) {

        if(twofour = true) {

            if(threefour = true) {

                winner = true;

            }

        }

    }

    if(twofour = true) {

        if(threefour = true) {

            if(fivefour = true) {

                winner = true;

            }

        }

    }

    if(threefour = true) {

        if(fivefour = true) {

            if(sixfour = true) {

                winner = true;

            }

        }

    }

}

if(foursix = true) {

    if(fourthree = true) {

        if(fourfour = true) {

            if(fourfive = true) {

                winner = true;

            }

        }

    }

    if(fourfour = true) {

        if(fourfive = true) {

            if(fourseven = true) {

                winner = true;

            }

        }

    }

    if(onethree = true) {

        if(twofour = true) {

            if(threefive = true) {

                winner = true;

            }

        }

    }

    if(twofour = true) {

        if(threefive = true) {

            if(fiveseven = true) {

                winner = true;

            }

        }

    }

    if(sixfour = true) {

        if(fivefive = true) {

            if(threeseven = true) {

                winner = true;

            }

        }

    }

    if(onesix = true) {

        if(twosix = true) {

            if(threesix = true) {

                winner = true;

            }

        }

    }

    if(twosix = true) {

        if(threesix = true) {

            if(fivesix = true) {

                winner = true;

            }

        }

    }

    if(twosix = true) {

        if(fivesix = true) {

            if(sixsix = true) {

                winner = true;

            }

        }

    }

}

if(fiveone = true) {

    if(twoone = true) {

        if(threeone = true) {

            if(fourone = true) {

                winner = true;

            }

        }

    }

    if(threethree = true) {

        if(fourtwo = true) {

            if(fiveone = true) {

                winner = true;

            }

        }

    }

    if(fivetwo = true) {

        if(fivethree = true) {

            if(fivefour = true) {

                winner = true;

            }

        }

    }

    if(twofour = true) {

        if(twofive = true) {

            if(threefour = true) {

                winner = true;

            }

        }

    }

}

if(fivetwo = true) {

    if(twofive = true) {

        if(threefour = true) {

            if(fourthree = true) {

                winner = true;

            }

        }

    }

    if(threefour = true) {

        if(fourthree = true) {

            if(sixone = true) {

                winner = true;

            }

        }

    }

    if(fiveone = true) {

        if(fivethree = true) {

            if(fivefour = true) {

                winner = true;

            }

        }

    }

    if(fivethree = true) {

        if(fivefour = true) {

            if(fivefive = true) {

                winner = true;

            }

        }

    }

    if(twotwo = true) {

        if(threetwo = true) {

            if(fourtwo = true) {

                winner = true;

            }

        }

    }

    if(threetwo = true) {

        if(fourtwo = true) {

            if(sixtwo = true) {

                winner = true;

            }

        }

    }

}

if(fivethree = true) {

    if(twosix = true) {

        if(threefive = true) {

            if(fourfour = true) {

                winner = true;

            }

        }

    }

    if(threefive = true) {

        if(fourfour = true) {

            if(sixtwo = true) {

                winner = true;

            }

        }

    }

    if(twothree = true) {

        if(threethree = true) {

            if(fourthree = true) {

                winner = true;

            }

        }

    }

    if(threethree = true) {

        if(fourthree = true) {

            if(sixthree = true) {

                winner = true;

            }

        }

    }

    if(fiveone = true) {

        if(fivetwo = true) {

            if(fivefour = true) {

                winner = true;

            }

        }

    }

    if(fivetwo = true) {

        if(fivefour = true) {

            if(fivefive = true) {

                winner = true;

            }

        }

    }

    if(fivefour = true) {

        if(fivefive = true) {

            if(fivesix = true) {

                winner = true;

            }

        }

    }

}

if(fivefour = true) {

    if(fiveone = true) {

        if(fivetwo = true) {

            if(fivethree = true) {

                winner = true;

            }

        }

    }

    if(fivetwo = true) {

        if(fivethree = true) {

            if(fivefive = true) {

                winner = true;

            }

        }

    }

    if(fivethree = true) {

        if(fivefive = true) {

            if(fivesix = true) {

                winner = true;

            }

        }

    }

    if(fivefive = true) {

        if(fivesix = true) {

            if(fiveseven = true) {

                winner = true;

            }

        }

    }

    if(twoone = true) {

        if(threetwo = true) {

            if(fourthree = true) {

                winner = true;

            }

        }

    }

    if(threetwo = true) {

        if(fourthree = true) {

            if(sixfive = true) {

                winner = true;

            }

        }

    }

    if(twoseven = true) {

        if(threesix = true) {

            if(fourfive = true) {

                winner = true;

            }

        }

    }

    if(threesix = true) {

        if(fourfive = true) {

            if(sixthree = true) {

                winner = true;

            }

        }

    }

    if(twofour = true) {

        if(threefour = true) {

            if(fourfour = true) {

                winner = true;

            }

        }

    }

    if(threefour = true) {

        if(fourfour = true) {

            if(sixfour = true) {

                winner = true;

            }

        }

    }

}

if(fivefive = true) {

    if(fivetwo = true) {

        if(fivethree = true) {

            if(fivefour = true) {

                winner = true;

            }

        }

    }

    if(fivethree = true) {

        if(fivefour = true) {

            if(fivesix = true) {

                winner = true;

            }

        }

    }

    if(fivefour = true) {

        if(fivesix = true) {

            if(fiveseven = true) {

                winner = true;

            }

        }

    }

    if(twotwo = true) {

        if(threethree = true) {

            if(fourfour = true) {

                winner = true;

            }

        }

    }

    if(threethree = true) {

        if(fourfour = true) {

            if(sixsix = true) {

                winner = true;

            }

        }

    }

    if(twofive = true) {

        if(threefive = true) {

            if(fourfive = true) {

                winner = true;

            }

        }

    }

    if(threefive = true) {

        if(fourfive = true) {

            if(sixfive = true) {

                winner = true;

            }

        }

    }

    if(threeseven = true) {

        if(foursix = true) {

            if(sixfour = true) {

                winner = true;

            }

        }

    }

}

if(fivesix = true) {

    if(twothree = true) {

        if(threefour = true) {

            if(fourfive = true) {

                winner = true;

            }

        }

    }

    if(threefour = true) {

        if(fourfive = true) {

            if(sixseven = true) {

                winner = true;

            }

        }

    }

    if(sixthree = true) {

        if(sixfour = true) {

            if(sixfive = true) {

                winner = true;

            }

        }

    }

    if(sixfour = true) {

        if(sixfive = true) {

            if(sixseven = true) {

                winner = true;

            }

        }

    }

    if(twosix = true) {

        if(threesix = true) {

            if(foursix = true) {

                winner = true;

            }

        }

    }

    if(threesix = true) {

        if(foursix = true) {

            if(sixsix = true) {

                winner = true;

            }

        }

    }

}

if(fiveseven = true) {

    if(twoseven = true) {

        if(threeseven = true) {

            if(fourseven = true) {

                winner = true;

            }

        }

    }

    if(threeseven = true) {

        if(fourseven = true) {

            if(sixseven = true) {

                winner = true;

            }

        }

    }

    if(twofour = true) {

        if(threefive = true) {

            if(foursix = true) {

                winner = true;

            }

        }

    }

    if(fivefour = true) {

        if(fivefive = true) {

            if(fivesix = true) {

                winner = true;

            }

        }

    }

}
if(sixone = true) {

    if(threefour = true) {

        if(fourthree = true) {

            if(fivetwo = true) {

                winner = true;

            }

        }

    }

    if(threeone = true) {

        if(fourone = true) {

            if(fiveone = true) {

                winner = true;

            }

        }

    }

    if(twosix = true) {

        if(threesix = true) {

            if(foursix = true) {

                winner = true;

            }

        }

    }

}

if(sixthree = true) {

    if(threesix = true) {

        if(fourfive = true) {

            if(fivefour = true) {

                winner = true;

            }

        }

    }

    if(threethree = true) {

        if(fourthree = true) {

            if(fivethree = true) {

                winner = true;

            }

        }

    }

    if(sixone = true) {

        if(sixtwo = true) {

            if(sixfour = true) {

                winner = true;

            }

        }

    }

    if(sixtwo = true) {

        if(sixfour = true) {

            if(sixfive = true) {

                winner = true;

            }

        }

    }

    if(sixfour = true) {

        if(sixfive = true) {

            if(sixsix = true) {

                winner = true;

            }

        }

    }

}

if(sixfive = true) {

    if(sixtwo = true) {

        if(sixthree = true) {

            if(sixfour = true) {

                winner = true;

            }

        }

    }

    if(sixthree = true) {

        if(sixfour = true) {

            if(sixsix = true) {

                winner = true;

            }

        }

    }

    if(sixfour = true) {

        if(sixsix = true) {

            if(sixseven = true) {

                winner = true;

            }

        }

    }

    if(threefive = true) {

        if(fourfive = true) {

            if(fivefive = true) {

                winner = true;

            }

        }

    }

    if(threetwo = true) {

        if(fourthree = true) {

            if(fivefour = true) {

                winner = true;

            }

        }

    }

}

if(sixseven = true) {

    if(threefour = true) {

        if(fourfive = true) {

            if(fivesix = true) {

                winner = true;

            }

        }

    }

    if(threeseven = true) {

        if(fourseven = true) {

            if(fiveseven = true) {

                winner = true;

            }

        }

    }

    if(sixfour = true) {

        if(sixfive = true) {

            if(sixsix = true) {

                winner = true;

            }

        }

    }

 

            System.out.println("Where would you like to play? (Row 1, 2, 3, etc)");

            String row = scan.next();

            if(row.equals("Row 1")) {

                if(oneone = false) {

                    oneone = true;

                }

                else if(oneone = true) {

                    if(onetwo = false) {

                        onetwo = true;

                }

                else if(onetwo = true) {

                    if(onethree = false) {

                        onethree = true;

                    }

                    else if(onethree = true) {

                        if(onefour = false) {

                            onefour = true;

                        }

                        else if(onefour = true) {

                            if(onefive = false) {

                                onefive = true;

                            }

                            else if(onefive = true) {

                                if(onesix = false) {

                                    onesix = true;

                                }

                                 else if(onesix = true) {

                                     if(oneseven = false) {

                                          oneseven = true;

 

                                }

                            }

                        }

                    }

                }

            }

        }

        else if(row.equals("Row 2")) {

            if(twoone = false) {

                    twoone = true;

                }

                else if(twoone = true) {

                    if(twotwo = false) {

                        twotwo = true;

                }

                else if(twotwo = true) {

                    if(twothree = false) {

                        onethree = true;

                    }

                    else if(twothree = true) {

                        if(twofour = false) {

                            onefour = true;

                        }

                        else if(twofour = true) {

                            if(twofive = false) {

                                onefive = true;

                            }

                            else if(twofive = true) {

                                if(twosix = false) {

                                    twosix = true;

                                }

                                 else if(twosix = true) {

                                     if(twoseven = false) {

                                         twoseven = true;

                                }

                            }

                        }

                    }

                }

            }

        }

        else if(row.equals("Row 3")) {

            if(threeone = false) {

                    oneone = true;

                }

                else if(threeone = true) {

                    if(threetwo = false) {

                        threetwo = true;

                }

                else if(threetwo = true) {

                    if(threethree = false) {

                        threethree = true;

                    }

                    else if(threethree = true) {

                        if(threefour = false) {

                            threefour = true;

                        }

                        else if(threefour = true) {

                            if(threefive = false) {

                                threefive = true;

                            }

                            else if(threefive = true) {

                                if(threesix = false) {

                                    threesix = true;

                                }

                                 else if(threesix = true) {

                                     if(threeseven = false) {

                                         threeseven = true;

                               }

                            }

                        }

                    }

                }

            }

        }

        

        else if(row.equals("Row 4")) {

            if(fourone = false) {

                    fourone = true;

                }

                else if(fourone = true) {

                    if(fourtwo = false) {

                        fourtwo = true;

                }

                else if(fourtwo = true) {

                    if(fourthree = false) {

                        fourthree = true;

                    }

                    else if(fourthree = true) {

                        if(fourfour = false) {

                            fourfour = true;

                        }

                        else if(fourfour = true) {

                            if(fourfive = false) {

                                fourfive = true;

                            }

                            else if(fourfive = true) {

                                if(foursix = false) {

                                    foursix = true;

                                }

                            else if(foursix = true) {

                                if(fourseven = false) {

                                    fourseven = true;

                                   }

                                }

                            }

                        }

                    }

                }

            }

        }

        else if(row.equals("Row 5")) {

            if(fiveone = false) {

                    fiveone = true;

                }

                else if(fiveone = true) {

                    if(fivetwo = false) {

                        fivetwo = true;

                }

                else if(fivetwo = true) {

                    if(fivethree = false) {

                        fivethree = true;

                    }

                    else if(fivethree = true) {

                        if(fivefour = false) {

                            fivefour = true;

                        }

                        else if(fivefour = true) {

                            if(fivefive = false) {

                                fivefive = true;

                            }

                            else if(fivefive = true) {

                                if(fivesix = false) {

                                    fivesix = true;

                                }

                                 else if(fivesix = true) {

                                     if(fiveseven = false) {

                                         fiveseven = true;

 

                            }

                        }

                    }

                }

            }

        }

        else if(row.equals("Row 6")) {

            if(sixone = false) {

                    sixone = true;

                }

                else if(sixone = true) {

                    if(sixtwo = false) {

                        sixtwo = true;

                }

                else if(sixtwo = true) {

                    if(sixthree = false) {

                        sixthree = true;

                    }

                    else if(sixthree = true) {

                        if(sixfour = false) {

                            sixfour = true;

                        }

                        else if(sixfour = true) {

                            if(sixfive = false) {

                                sixfive = true;

                            }

                            else if(sixfive = true) {

                                if(sixsix = false) {

                                    sixsix = true;

                                }

                            else if(sixsix = true) {

                                if(sixseven = false) {

                                    sixseven = true;

                                }

                            }

                        }

                    }

                }

            }

        }

    }

}

}

I'm a TA for a CS class at my school, graded this submission for a connect 4 project, idk wtf happened with this persons thought process tbh.....

By https://coderguy1777.github.io, 2019-08-30 18:09:34
for (int i = 0;i < n / 2;i++)
    {
        while (num[a[p].id].n == 0 || num[num[a[p].id].nxt].n == 0)
        {
            p++;
        }
        printf("%d %d ", num[a[p].id].n, num[num[a[p].id].nxt].n);
        num[a[p].id].n = 0;
        num[num[a[p].id].nxt].n = 0;
        num[num[a[p].id].lst].nxt = num[num[a[p].id].nxt].nxt;
        num[num[num[a[p].id].nxt].nxt].lst = num[a[p].id].lst;
    }
By Anonymous, 2022-08-06 14:50:56