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
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.

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

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

YouTube

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

Are you calling the Boatmaster a villain?

6515
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.

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

6517
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.

6518
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.

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

6520
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.

6521
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.

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

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

6524
The Flood / Re: Share your current writing
« on: October 14, 2015, 08:13:53 AM »
I've been writing a poem.
Spoiler

6525
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.

6526
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

6527
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.

6528
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...

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

6530
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

6532
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.

6533
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

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

YouTube

6535
Only 4 weeks left!

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

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

6538
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.

6539
please avoid halo archive
Spoiler

6540
where are the spoilers

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