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 - cxfhvxgkcf-56:7

Pages: 1 ... 939495 9697 ... 517
2822
The Flood / Re: How old do you think I am?
« on: September 30, 2015, 05:32:01 PM »
15

2823
The Flood / Re: Hello! I am cancer. ¡Hola! Soy cáncer.
« on: September 30, 2015, 05:26:07 PM »
i do actually remember you

2824
The Flood / >105 guests
« on: September 30, 2015, 04:36:48 PM »
Oh

2825
The Flood / Re: Oh boy
« on: September 30, 2015, 03:46:44 PM »
another thread ruined by weebs

2826
you're gay

accept it

2827
The Flood / Re: Oh boy
« on: September 30, 2015, 03:38:30 PM »
i'm still sceptical that many new people will come

2828
i remember when zoob was a monitor

good times

2829
The Flood / Re: Dropping a duece at work...
« on: September 30, 2015, 03:05:20 PM »
take off your socks and scoop it out like ice cream

2830
The Flood / Re: Small Projects?
« on: September 30, 2015, 02:57:31 PM »
i mean its school related but this thing

Code: [Select]
#include <stdio.h>
#include <stdlib.h>
#include "cstack.h"
#include "alg2rpn.h"
#include "rpn_util.h"
#include "rpn.h"
#include "boolean.h"

float alg2rpn(char my_string[]) {
  cstack top;
  char output[30];
  int i = -1, j = 0, next_state = 0;
  float ans;
  init_cstack(&top);
while (1) {
  switch(next_state) {
    case 0: i++;
  if (is_digit(my_string[i])) {
next_state = 1;
  }
  else if (is_operator(my_string[i])) {
next_state = 2;
  }
  else if (is_space(my_string[i])) {
next_state = 7;
  }
  else if (my_string[i] == '(') {
next_state = 3;
  }
  else if (my_string[i] == ')') {
next_state = 4;
  }
  else if (is_end(my_string[i])) {
next_state = 5;
  }
  else {
next_state = 6;
  }
 
    break;
   
    /* If Digit */
        case 1: while ((is_digit(my_string[i]) || (my_string[i] == '.'))) {
    output[j] = my_string[i];
    j++;
    i++;
    }
     output[j] = ' ';
     j++;
     next_state = 0;
        break;

            /* If Operator */
    case 2: while ((!c_is_empty(top)) && (is_operator(top -> data)) && prec(my_string[i]) <= prec(top -> data)) {
    output[j] = c_pop(&top);
    j++;
    output[j] = ' ';
    j++;
    }
    c_push(&top, my_string[i]);
    next_state = 0;
    break;

    /* If Left Parentheses */
    case 3: c_push(&top, my_string[i]);
    next_state = 0;
    break;

    /* If Right Parentheses */
    case 4: while (top -> data != '(') {
          output[j] = c_pop(&top);
      j++;
      output[j] = ' ';
      j++;
    }
    c_pop(&top);
    next_state = 0;
    break;
   
        case 5: while ((!c_is_empty(top)) && (is_operator(top -> data))) {
        output[j] = c_pop(&top);
j++;
output[j] = ' ';
j++;
            }
    ans = rpn(output);
    return ans;
    break;

    /* Garbage */
    case 6: return printf("Something went wrong\n");
    exit;
    break;

    /* If space */
    case 7: output[j] = my_string[i];
    j++;
    next_state = 0;
}
    }
}

2831
The Flood / Re: Does this mean Sep7agon is gonna be famous?
« on: September 30, 2015, 02:53:17 PM »
well the people that stay in private groups still have that and will have no more incentive than prior to leave
this being said if cheat could get the private groups up and running (which i'm not holding my breath on now that he has an actual IRL job) they would potentially migrate over because the layout here is objectively better.
He has an IRL job now?
yeah web designer of course. He's doing pretty well for himself from what he's told me
Did a surge of customers arrive at his doorstep, or is the fact that he's a web designer news to you?
well he is a web designer for a proper firm now rather than being a freelance designer

2832
The Flood / Re: Does this mean Sep7agon is gonna be famous?
« on: September 30, 2015, 02:51:03 PM »
well the people that stay in private groups still have that and will have no more incentive than prior to leave
this being said if cheat could get the private groups up and running (which i'm not holding my breath on now that he has an actual IRL job) they would potentially migrate over because the layout here is objectively better.
He has an IRL job now?
yeah web designer of course. He's doing pretty well for himself from what he's told me

2833
The Flood / Re: Does this mean Sep7agon is gonna be famous?
« on: September 30, 2015, 02:47:13 PM »
well the people that stay in private groups still have that and will have no more incentive than prior to leave
this being said if cheat could get the private groups up and running (which i'm not holding my breath on now that he has an actual IRL job) they would potentially migrate over because the layout here is objectively better.

2834
The Flood / Re: real talk
« on: September 30, 2015, 02:44:13 PM »
is it because im a homosexual
yup

2835
The Flood / Re: Does this mean Sep7agon is gonna be famous?
« on: September 30, 2015, 02:43:28 PM »
well the people that stay in private groups still have that and will have no more incentive than prior to leave

2836
The Flood / Re: Should I stay or go?
« on: September 30, 2015, 02:41:32 PM »
oh come on who is honestly the person that wants charlie to leave?

did the dude get a little butt blasted?

yeah but who hasn't at some point in their time on the internet.

point is when he was here he contributed a good amount of threads that had discussion value and god knows this site needs that

2837
The Flood / Re: Should I stay or go?
« on: September 30, 2015, 02:33:23 PM »
you can stay

Spoiler
ON DEEZ NUTS

2838
of course not

who honestly expected he/she would?

2839
The Flood / Re: welcome to good games
« on: September 30, 2015, 02:26:02 PM »

2840


Going down fighting like a real hero.

Spoiler
inb4 any "what a top lad / absolute ledge/madman" replies
OH WOW THOSE KIKES REMOVED THAT ONE TOO?

what it said was

Quote
Deej I sincerely hope you crawl back up your mother's vagina so you can be aborted

i think its safe to say I'm banned. That's the 4th post they've removed of mine within the span of 30 minutes, the others were me calling them money-grubbing kikes

2841
The Flood / Re: welcome to good games
« on: September 30, 2015, 02:19:30 PM »
do you prefer to read your anime because we also have books
RETRO

CLASSICS

rare hard to find
WE HAVE JAPANESE ANIME

YOUR ORDERS CAN BE PLACED AT ANY TIME

2842
The Flood / Re: welcome to good games
« on: September 30, 2015, 02:11:11 PM »
do you prefer to read your anime because we also have books
RETRO

CLASSICS

2843
The Flood / welcome to good games
« on: September 30, 2015, 02:08:14 PM »
we've got.... good.... games

2845
https://www.bungie.net/en/Forum/Post/158194147/0/0
god that fucking smiley face emblem makes all your posts 300% more cheeky

2847
Also, I recently noticed your trolling skills are not what they once were. People here won't be as naive as the ones back on B.net.

I don't plan on trolling here, I have no reason to
will you at least shitpost?

Of course!
ALLAHU BEETLE
L
L
A
H
U

B
E
E
T
L
E

2848
News / Re: Community Feedback
« on: September 30, 2015, 01:48:10 PM »
SAVE OUR SHITPOSTS
A
V
E

O
U
R

S
H
I
T
P
O
S
T
S

2849
Also, I recently noticed your trolling skills are not what they once were. People here won't be as naive as the ones back on B.net.

I don't plan on trolling here, I have no reason to
will you at least shitpost?

2850
Serious / Re: Russia begins bombing in Syria
« on: September 30, 2015, 01:37:26 PM »
Putin is doing the right thing tbh. I hope he steamrolls the entire middle east.

Pages: 1 ... 939495 9697 ... 517