Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - big dog

Pages: 1 ... 216217218 219220 ... 305
6511
I want that guide but it costs money and I've already got the Pip-Boy edition pre-ordered as well as Halo 5 and its Limited Edition guide.

6512
Gaming / Re: Post a game ending without saying what game it is.
« on: October 15, 2015, 07:57:12 AM »
Canon ending involves going with a really cool guy to a large community but not everyone is allowed in so the cool guy offers to stay behind because he's a good person.

6513
The Flood / Re: banter thread
« on: October 14, 2015, 05:27:41 PM »
absolute madman

6514
The Flood / Re: Wake up people!
« on: October 14, 2015, 04:53:06 PM »
Did somebody say "Hope for the Future?"

YouTube

6515
Gaming / Re: Top Villains in games?
« on: October 14, 2015, 04:48:41 PM »
Kenny

Are you calling the Boatmaster a villain?

6516
Achievement list has been revealed, there are a few minor spoilers.

https://www.halowaypoint.com/en-us/community/blog-posts/halo-5-guardians-achievements-revealed
Alright so this basically confirms Johnson's death.

6517
The Flood / Re: Donald Trump's a shitposter
« on: October 14, 2015, 01:22:48 PM »
friend to woman

6518
Gaming / Re: Top Villains in games?
« on: October 14, 2015, 12:22:24 PM »
Darth Traya > All

Care to explain?
Main antagonist of KOTOR 2. Can't really explain without giving major spoilers.

Put it in a spoiler tab then
Eh cba to explain atm. There's a pretty good anaylsis of her character which I can't seem to locate.

6519
Gaming / Re: Top Villains in games?
« on: October 14, 2015, 12:15:33 PM »
Darth Traya > All

Care to explain?
Main antagonist of KOTOR 2. Can't really explain without giving major spoilers.

6520
Gaming / Re: Top Villains in games?
« on: October 14, 2015, 12:12:05 PM »
Darth Traya > All

6521
The Flood / Re: Share your current writing
« on: October 14, 2015, 11:37:40 AM »
just wrote my midterm for data structures fam

Code: [Select]
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <math.h>
#include <ctype.h>

int main(int argc, char * argv[]) {
char op, my_string[5];
float num, num1, num2, fans;
int len, i = 0;

if (argc == 4) {
sscanf(argv[1], "%f", &num1);
sscanf(argv[2], "%c", &op);
sscanf(argv[3], "%f", &num2);

switch (op) {
case '+': fans = num1 + num2;
printf("%4.2f + %4.2f = %4.2f\n", num1, num2, fans);
break;

case '-': fans = num1 - num2;
printf("%4.2f - %4.2f = %4.2f\n", num1, num2, fans);
break;

case 'x':
case 'X': fans = num1 * num2;
printf("%4.2f x %4.2f = %4.2f\n", num1, num2, fans);
break;
case '/': if (num2 == 0) {
printf("Error: Cannot divide by zero.\n");
  }
          else {
fans = num1/num2;
printf("%4.2f / %4.2f = %4.2f\n", num1, num2, fans);
  }
break;

case '^': if (num1 == 0 && num2 <= 0) {
        printf("num1 ^ num2 can't be represented\n");
printf("%4.2f ^ %4.2f = %4.2f\n", num1, num2, fans);
  }
  else {
fans = pow(num1, num2);
  }
break;

default: printf("%c is not a valid selection\n", op);
break;
}
}
else if (argc == 3) {
sscanf(argv[1], "%c", &op);
sscanf(argv[2], "%f", &num);

switch (op) {
case 'n':
case 'N': fans = num * -1;
printf("-(%4.2f) = %4.2f\n", num, fans);
break;

case 'a':
case 'A': fans = fabs(num);
printf("|%4.2f| = %4.2f\n", num, fans);
break;

case 's':
case 'S': if (num < 0) {
printf("Error: Can't find square root of negative number.\n");
  }
  else {
fans = sqrt(num);
printf("Sqrt(%4.2f) = %4.2f\n", num, fans);
  }
break;

default: printf("%c is not a valid selection\n", op);
break;
}
}

else {
printf("Proper input: \n\tnumber operator number\n\t operator number\nEnter your expression: ");
gets(my_string);
len = strlen(my_string);
 
if (len == 5) {
sscanf(my_string, "%f %c %f", &num1, &op, &num2);

switch (op) {
case '+': fans = num1 + num2;
printf("%4.2f + %4.2f = %4.2f\n", num1, num2, fans);
break;

case '-': fans = num1 - num2;
printf("%4.2f - %4.2f = %4.2f\n", num1, num2, fans);
break;

case 'x':
case 'X': fans = num1 * num2;
printf("%4.2f x %4.2f = %4.2f\n", num1, num2, fans);
break;
case '/': if (num2 == 0) {
printf("Error: Cannot divide by zero.\n");
  }
          else {
fans = num1/num2;
printf("%4.2f / %4.2f = %4.2f\n", num1, num2, fans);
  }
break;

case '^': if (num1 == 0 && num2 <= 0) {
        printf("%f ^ %f can't be represented\n", num1, num2);
  }
  else {
fans = pow(num1, num2);
printf("%4.2f ^ %4.2f = %4.2f\n", num1, num2, fans);
  }
break;

default: printf("%c is not a valid selection\n", op);
break;
}
}
else if (len == 3) {
sscanf(my_string, "%c %f", &op, &num);

switch (op) {
case 'n':
case 'N': fans = num * -1;
printf("-(%4.2f) = %4.2f\n", num, fans);
break;

case 'a':
case 'A': fans = fabs(num);
printf("|%4.2f| = %4.2f\n", num, fans);
break;

case 's':
case 'S': if (num < 0) {
printf("Error: Can't find square root of negative number.\n");
  }
  else {
fans = sqrt(num);
printf("Sqrt(%4.2f) = %4.2f\n", num, fans);
  }
break;

default: printf("%c is not a valid selection\n", op);
break;
}
}
    }
}
Seeing this makes me realise how fucked I am for my own course because I can't code for shit.

6522
Gaming / Re: MGS: Ground Zeroes
« on: October 14, 2015, 10:10:29 AM »
Don't jump in the game excited, I finished it like 2 hours later and was really underwhelmed. I knew the game was short but jesu
When I started playing I thought the stuff I was doing was only the first mission and I'd be sent to another location afterwards but it ended up being the entire game.

6523
The Flood / Re: Opinion thread
« on: October 14, 2015, 10:03:26 AM »
The Walking Dead is one of the best shows on TV.

6524
Gaming / Re: "Ghouls are people too!" | 27 Days - Fallout 4
« on: October 14, 2015, 09:07:26 AM »
Agility video is up.

6525
The Flood / Re: Share your current writing
« on: October 14, 2015, 08:13:53 AM »
I've been writing a poem.
Spoiler
SO THEY'RE FINALLY HERE, PERFORMING FOR YOU
IF YOU KNOW THE WORDS, YOU CAN JOIN IN TOO
BUT IF YOU WANT TO COME ABOARD THIS PLANE
YOU DON'T GET TO BRING FRIENDS, THEY CAN CATCH A TRAIN

HUH!

BEE-GEE! SEE-EYE-AYY!


HE'S THE LEADER OF THE BUNCH, YOU KNOW HIM WELL
HE'S FINALLY BACK TO GET SOME INTEL
HIS PISTOL IS POWERFUL, WITHOUT A DOUBT
IF HE SHOOTS YA, HE'LL THROW YOU OUT
HE AND HIS MEN, DR PAVEL HERE
AND ONLY ONE OF YOU GET TO STAY IN THE AIR

HUH!

BEE-GEE! SEE-EYE-AYY!

BEE-GEE! SEE-EYE-AYY IS HERE!


HE HAS NO STYLE, HE HAS NO GRACE
THIS MERCENARY HAS A MASK ON HIS FACE
HE CAN CRASH PLANES WHEN HE NEEDS TO
AND BE A BIG GUY JUST FOR YOU
GET HIMSELF CAUGHT, JUST AS THE PLANS REQUIRE
THIS BIG GUY HAS JUST STARTED THE FIRE

HUH!

BEE-GEE! SEE-EYE-AYY!

6526
Gaming / Re: Destiny now has micro transactions UPDATE
« on: October 14, 2015, 03:11:49 AM »
I PAID £3.99 FOR THE CARLTON DANCE AND I REGRET NOTHING.

6527
Gaming / Re: Minecraft Story Mode scores are in...
« on: October 13, 2015, 02:21:29 PM »
If this shit doesn't get you hyped I don't know what will.
YouTube

I hope all of those characters die.
female jesse is bae though xD

6528
Serious / Re: Democratic Primary Debate #1
« on: October 13, 2015, 12:17:10 PM »
literally posted a Pepe today.

Holy shit that's the best fucking thing I've ever seen.

6529
Gaming / Re: Minecraft Story Mode scores are in...
« on: October 13, 2015, 11:04:23 AM »
Erm.....

I'm just gonna stay with Tales of the Borderlands and Game of Thrones.
They're ending this month, then we'll be stuck with Minecraft...

6530
Gaming / Re: Minecraft Story Mode scores are in...
« on: October 13, 2015, 08:36:00 AM »
WHY, TELLTALE?! THINGS WERE GOING SO WELL.

6531
Gaming / Re: Minecraft Story Mode scores are in...
« on: October 13, 2015, 08:16:55 AM »
If this shit doesn't get you hyped I don't know what will.
YouTube

6533
The Flood / Re: The Walking Dead Season 6 Thread - Sunday 11th October
« on: October 13, 2015, 07:12:54 AM »
Holy shit that was a good episode.

6534
Gaming / Re: Minecraft Story Mode scores are in...
« on: October 13, 2015, 02:27:33 AM »
THE BEST TELLTALE GAME SINCE GAME OF "TELEPORTING RAMSAY" THRONES

6535
Gaming / Minecraft Story Mode scores are in...
« on: October 13, 2015, 02:20:46 AM »
IT'S A MASTERPIECE

YouTube

6536
Only 4 weeks left!

6537
The Flood / Re: I Will Rate You Out Of 1O
« on: October 12, 2015, 06:04:13 PM »
sure

6538
The Flood / Re: Have you ever fantasizes about being raped by a tentacle?
« on: October 12, 2015, 05:49:36 PM »
No.

6539
The Flood / Re: A ______ a day, keeps the ______ away.
« on: October 12, 2015, 05:14:38 PM »
A meme a day keeps the anime away.

6540
please avoid halo archive
Spoiler
nigga the leaked script was a fake

Pages: 1 ... 216217218 219220 ... 305