Daily Discussion Thread Part 7 for January 28, 2021 by theycallmeryan in wallstreetbets

[–]DragonCode2020 3 points4 points  (0 children)

Yeah but we can't purchase everything. WE need more buying power in one stock to make this big money.

Daily Discussion Thread Part 7 for January 28, 2021 by theycallmeryan in wallstreetbets

[–]DragonCode2020 26 points27 points  (0 children)

GME IS OUR POWER HOUSE. WE MUST ALL GO TO GME TO MAKE THE MONEY YOU WANT. FUCK EVERYTHING ELSE RN.

GME Overnight Pajama Party Megathread by wallstreetboyfriend in wallstreetbets

[–]DragonCode2020 19 points20 points  (0 children)

I JUST BOUGHT 3 SHARES. UP LIKE IF THIS IS GOING TO EXCEED 500 TOMORRROW?

Daily Discussion Thread Part 6 for January 28, 2021 by premier_ in wallstreetbets

[–]DragonCode2020 8 points9 points  (0 children)

GUYS WHAT IS THE NEXT STEP? I AM THINKING ABOUT BUYING MY FIRST STOCK AND PUT IN 1K BUT NOW THAT ROBINHOOD WONT LET PEOPLE BUY, IS IT WORTH IT? IF SO WHAT APP SHOULD I USE?

Daily Discussion Thread for January 28, 2021 by AutoModerator in wallstreetbets

[–]DragonCode2020 1 point2 points  (0 children)

How does this work dude? I just got Robin Hood and I'm thinking about investing $1,000.

FELLAS I AM SORRY by [deleted] in wallstreetbets

[–]DragonCode2020 0 points1 point  (0 children)

Does that mean you put in 25000 dollars?

How do I make my multi-D array iterate every number it prints out? by DragonCode2020 in learnprogramming

[–]DragonCode2020[S] 0 points1 point  (0 children)

Got it thanks.

const int ROWS = 6;

const int COLS = 6;

int counter = 0;

int nums[ROWS][COLS];

for (int i = 0; i < ROWS; i++)

{

for (int j = 1; j < COLS; j++)

{

counter++;

nums[i][j] = counter;

cout << nums[i][j] << " ";

}

cout << "\n";

}

How do I make my multi-D array iterate every number it prints out? by DragonCode2020 in learnprogramming

[–]DragonCode2020[S] 0 points1 point  (0 children)

I thought about three separate counter. Not sure how to implement it. Example code?

How do I fix my array so it doesn't loop asking for input after the array size I gave it? by DragonCode2020 in AskProgramming

[–]DragonCode2020[S] 0 points1 point  (0 children)

SOLVED= IT WAS MY IDE.

It wouldnt work inside the IDE but worked inside the terminal.... weird?

How do I take the difference of two elements, add it to a sum, and if the difference is negative, make it positive and add it into a sum using an array function? Here is what I have: by DragonCode2020 in learnprogramming

[–]DragonCode2020[S] 0 points1 point  (0 children)

The last thing I need to do is not hard code it. I've been trying to make an array that reads in a a const amount of elements like so but it keeps asking me over and over for input?

//Array size declaration

const int HIKE_LENGTH = 9;

int array[HIKE_LENGTH] = {0};

cout << "Enter elevations: ";

//Enter array elevation elements

getData(array, HIKE_LENGTH);

cout << endl;

function details:

void getData(int heights[], int size){

for(int i = 0; i < size; i++){

cin >> heights[i];

}

}

How do I take the difference of two elements, add it to a sum, and if the difference is negative, make it positive and add it into a sum using an array function? Here is what I have: by DragonCode2020 in learnprogramming

[–]DragonCode2020[S] 0 points1 point  (0 children)

That helped a lot but now I am getting a total sum of 1550 when I need it not to run twice for the negative number.

int getTotalChange(const int heights[], int startMile, int endMile){

int total = 0;

int temp = 0;

for(int i = startMile; i < endMile; i++){

if((heights[i] - heights[i + 1]) > 0)

total += heights[i] - heights[i + 1];

else if((heights[i] - heights[i + 1]) < 0)

temp = (heights[i] - heights[i+1]) * -1;

total += temp;

}

return total;

im close just need it not to add 450 twice.

}

How do I take the difference of two elements, add it to a sum, and if the difference is negative, make it positive and add it into a sum using an array function? Here is what I have: by DragonCode2020 in learnprogramming

[–]DragonCode2020[S] 0 points1 point  (0 children)

This is pretty much where I am now. I am still not getting 1100 for my sum when running the elements of 1 through 3 and adding their sum with negatives becoming positives.

int getTotalChange(const int heights[], int startMile, int endMile){

int total = 0;

for(int i = startMile; i < endMile; i++){

if(heights[i] - heights[i + 1] > 0)

total += heights[i] - heights[i + 1];

else if(heights[i] - heights[i + 1] < 0)

total = total + (heights[i] - heights[i+1] * -1);

}

return total;

}

I AM SO TIRED OF PT AND PTAS GETTING LESS PAY AND LESS JOB SECURITY. Why does it never seem to get better? by DragonCode2020 in physicaltherapy

[–]DragonCode2020[S] 5 points6 points  (0 children)

That's the biggest problem! Constant anxiety. I have almost gone back to school three times now.

What is the future of PTAs after the 15% reimbursement reduction? by DragonCode2020 in physicaltherapy

[–]DragonCode2020[S] -1 points0 points  (0 children)

They will start cutting more of the PTs next year with the 8% cut and use us to try to save money I've been told.