Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

BinaryReader #23

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
package com.codefortomorrow.intermediate.chapter10.practice;

/*
Create a program called BinaryReader in which a 4 x 4
array of booleans is created. Have the computer loop
through the array, printing a 0 if the current element is
set to false and a 1 if it set to true.
Comment on lines +4 to +7
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Instead of having them create an array themselves, you might want to consider having this be a method instead (the 4x4 array is the parameter and the method either prints or returns the string)


Example Array:
{
{true, false, false, true},
{false, true, true, true},
{true, true, false, true},
{true, false, false, false}
}

Example Output:
1001
0111
1101
1000
*/

public class BinaryReader
{
public static void main(String[] args)
{

}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
package com.codefortomorrow.intermediate.chapter10.solutions;

/*
Create a program called BinaryReader in which a 4 x 4
array of booleans is created. Have the computer loop
through the array, printing a 0 if the current element is
set to false and a 1 if it set to true.

Example Array:
{
{true, false, false, true},
{false, true, true, true},
{true, true, false, true},
{true, false, false, false}
}

Example Output:
1001
0111
1101
1000
*/

public class BinaryReader
{
public static void main(String[] args)
{
//Create a 2D array of booleans
boolean[][] arr =
{
{true, false, false, true},
{false, true, true, true},
{true, true, false, true},
{true, false, false, false}
};

//Loop through the array using nested loops
for(int i = 0; i < arr.length; i++)
{
for(int j = 0; j < arr[0].length; j++)
{
//Check if current element is set to true
if(arr[i][j] == true)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You can actually change this line to

Suggested change
if(arr[i][j] == true)
if(arr[i][j])

{
//Print out a 1 if set to true
System.out.print(1);
}
//Otherwise, current element is set to false
else
{
//Print out a 0 if set to false
System.out.print(0);
}
}

//Move over to the next line
System.out.println();
}
}
}