forum

ITT 2: We post shit that is neither funny nor interesting

posted
Total Posts
56,159
show more
Zelda
Goddamn, Hunger Games was disappointing. Battle Royale is a better movie and book by far.
IppE

kirueggy wrote:

Someone please revise my java code or whatever

big ass java code
* Write a description of class DeathAndTaxes here.
*
* @author (Enrico Saturnino)
* @version (2015)
*/

import java.util.*;
import java.lang.Math;

public class DeathAndTaxes
{
public static void main(String[] args)
{
Scanner keyboard = new Scanner(System.in);

char status;
int income = 0;

//Starting point values
double Serf = 0;
double Peasant = 922.50;
double Commoner = 5156.2;
double Noble = 18481.21;
double YeahNowWereGettingSomewhere = 46075.25;
double HotDamn = 119401.25;
double ThatCheddarTho = 119996.25;

//Starting point values
double MarriedSerf = 0;
double MarriedPeasant = 1845;
double MarriedCommoner = 10312.50;
double MarriedNoble = 29387.50;
double MarriedYeahNowWereGettingSomewhere = 51577.50;
double MarriedHotDamn = 111324;
double MarriedThatCheddarTho = 129996.5;

//percentage taxed values
double GetTaxedPleb = .10;
double GetTaxedNoob = .15;
double GetTaxedNormie = .25;
double GetTaxedYo = .28;
double GetTaxedKindaRichGuy = .33;
double IveRunOutOfNames = .35;
double LolThisIsGonnaEndUpYoursAgainAnyway = .396;

//wealth boundaries
double InstantNoodles= 9225;
double Sandwich= 37450;
double Steak= 90750;
double Lobster= 189300;
double Caviar= 411500;
double TigerGenitals= 413200;

//Married wealth boundaries
double MarriedInstantNoodles= 18450;
double MarriedSandwich= 74900;
double MarriedSteak= 151200;
double MarriedLobster= 230450;
double MarriedCaviar= 411500;
double MarriedTigerGenitals= 464580;

//ultimate tax income
double Poverty = 0;
double PrettyPoor = 0;
double Moderate = 0;
double Affluent = 0;
double Rich = 0;
double RichAf = 0;
double DamnSon = 0;

//ultimate tax income
double MarriedPoverty = 0;
double MarriedPrettyPoor = 0;
double MarriedModerate = 0;
double MarriedAffluent = 0;
double MarriedRich = 0;
double MarriedRichAf = 0;
double MarriedDamnSon = 0;

System.out.print("Are you married?(Y/N) ");
status = keyboard.next().charAt(0);

if (status == 'N' )
{
System.out.println("[Single]What is your taxable income?");
income = keyboard.nextInt();
Poverty = (income * GetTaxedPleb);
PrettyPoor = ((income * GetTaxedNoob) + Peasant);
Moderate = ((income * GetTaxedNormie) + Commoner);
Affluent = ((income * GetTaxedYo) + Noble);
Rich = ((income * GetTaxedKindaRichGuy) + YeahNowWereGettingSomewhere);
RichAf = ((income * IveRunOutOfNames) + HotDamn);
DamnSon = ((income * LolThisIsGonnaEndUpYoursAgainAnyway) + ThatCheddarTho);
}

else if (status == 'Y' )
{
System.out.println("[Married]What is your taxable income?");
income = keyboard.nextInt();
MarriedPoverty = (income * GetTaxedPleb);
MarriedPrettyPoor = ((income * GetTaxedNoob) + MarriedPeasant);
MarriedModerate = ((income * GetTaxedNormie) + MarriedCommoner);
MarriedAffluent = ((income * GetTaxedYo) + MarriedNoble);
MarriedRich = ((income * GetTaxedKindaRichGuy) + MarriedYeahNowWereGettingSomewhere);
MarriedRichAf = ((income * IveRunOutOfNames) + MarriedHotDamn);
MarriedDamnSon = ((income * LolThisIsGonnaEndUpYoursAgainAnyway) + MarriedThatCheddarTho);
}
else
{
System.out.println("Sorry, that's not an acceptable input. Please try again!");
}

if (status == 'N' && income <= InstantNoodles && income >= 1)
{
System.out.println("Taxes due: $ " + Poverty);
}

if (status == 'N' && income <= Sandwich && income >= InstantNoodles)
{
System.out.println("Taxes due: $ " + PrettyPoor);
}

if (status == 'N' && income <= Steak && income >= Sandwich)
{
System.out.println("Taxes due: $ " + Moderate);
}

if (status == 'N' && income <= Lobster && income >= Steak)
{
System.out.println("Taxes due: $ " + Affluent);
}

if (status == 'N' && income <= Caviar && income >= Lobster)
{
System.out.println("Taxes due: $ " + Rich);
}

if (status == 'N' && income <= TigerGenitals && income >= Caviar)
{
System.out.println("Taxes due: $ " + RichAf);
}

if (status == 'N' && income >= TigerGenitals)
{
System.out.println("Taxes due: $ " + DamnSon);
}

if (status == 'Y' && income <= MarriedInstantNoodles && income >= 1)
{
System.out.println("Taxes due: $ " + MarriedPoverty);
}

if (status == 'Y' && income <= MarriedSandwich && income >= MarriedInstantNoodles)
{
System.out.println("Taxes due: $ " + MarriedPrettyPoor);
}

if (status == 'Y' && income <= MarriedSteak && income >= MarriedSandwich)
{
System.out.println("Taxes due: $ " + MarriedModerate);
}

if (status == 'Y' && income <= MarriedLobster && income >= MarriedSteak)
{
System.out.println("Taxes due: $ " + MarriedAffluent);
}

if (status == 'Y' && income <= MarriedCaviar && income >= MarriedLobster)
{
System.out.println("Taxes due: $ " + MarriedRich);
}

if (status == 'Y' && income <= MarriedTigerGenitals && income >= MarriedCaviar)
{
System.out.println("Taxes due: $ " + MarriedRichAf);
}

if (status == 'Y' && income >= MarriedTigerGenitals)
{
System.out.println("Taxes due: $" + MarriedDamnSon);
}
}
}
Your variable names are memes and do you really need to have them as doubles.

also >java
SaigonAlice

Brian OA wrote:

We just gonna ignore this cute anime girl? Ok... RIP Brian OA's relevance

Zelda wrote:

Goddamn, Hunger Games was disappointing. Battle Royale is a better movie and book by far.
According to you and thousands of other older men on the internet

Green Platinum wrote:

Third Hunger Games book was super boring I can't imagine how the film adaption went
They split it into two parts, just like with deathly hallows. What a fucking money squeeze.
Green Platinum
Third Hunger Games book was super boring I can't imagine how the film adaption went
NotEvenDoomMusic

SaigonAlice wrote:

Zelda

SaigonAlice wrote:

Zelda wrote:

Goddamn, Hunger Games was disappointing. Battle Royale is a better movie and book by far.
According to you and thousands of other older men on the internet
But I'm not an old man :(
Mercurial
Defqon 1 in South America.

YIIIIIIIIIIIIIIIIIIIIISSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS
Trash Boat

SaigonAlice wrote:

I didn't actually write that :)

I had school. :(
where have you been? besides school
IppE
Antlia-

Brian OA wrote:

I have spoken

You may direct all of your complaints at your nearest brick wall now.
your the nearest brick wall
IppE
his brick wall?
Antlia-

IppE wrote:

his brick wall?
no he is the brick wall
Railey2

ahsoka08 wrote:

IppE wrote:

his brick wall?
no he is the brick wall
no I think its his brick wall, what are you talking about
-sev
whose brick wall?
Antlia-

Railey2 wrote:

ahsoka08 wrote:

no he is the brick wall
no I think its his brick wall, what are you talking about
he is the brick that stands in my way to post the shit I want, I'm trying to figure out how to blow it up
Green Platinum
He obviously means we are all a brick wall.

SaigonAlice
it really shows how unfunny offtopic is when everyone is shitting themselves about a fucking brick wall

literally euthanize offtopic
kirueggy

SaigonAlice wrote:

literally euthanize offtopic
or we could euthanize ur bitch ass for shitposting
dkun
god bless
Railey2

SaigonAlice wrote:

it really shows how unfunny offtopic is when everyone is shitting themselves about a fucking brick wall

literally euthanize offtopic
Half of us were shitting ourselves about a pronoun, but the people that never caught on shat themselves about brick walls.
Then theres you who shits himself about people that shit themselves about brickwalls. I wonder where that puts you in the shitting-hierarchy, but I dare to say that meta doesn't always mean that you're high up. Like, theres the people that complained about the bush-administration, and then theres the people that complained about the people that complained about the bush-administration..
dkun
where's the fire

y'all need some jesus
Yuudachi-kun

kirueggy wrote:

SaigonAlice wrote:

literally euthanize offtopic
or we could euthanize ur bitch ass for shitposting
Mercurial
Why not both.
Trash Boat
That's enough!
SaigonAlice
i, a proud shitposter
Yuudachi-kun

SaigonAlice wrote:

i, a proud shitposter
Yes yes, a dumb cunt yadda yadda
SaigonAlice
who said that
fat pear

SaigonAlice wrote:

who said that
no one cares about you! :)
Mercurial
>implying someone do care about people over offtopic besides lewa and ocasionally Ephemeral.
Yuudachi-kun
These lunchables have transfats. Is that better than cisfats?
dNextGen
i'd just leave this here in case anybody that knows shit about power supplies happen to pass by

right now im trying to power R9 290 Tri-X with this PSU, it has 41.5Amps on the 12V rail

will that PSU be able to cope with the load ? most of review sites are getting 300 to mid 400 watts during load, but everyone keep telling me to buy a new 650W PSU
Green Platinum

Khelly wrote:

These lunchables have transfats. Is that better than cisfats?
Cis is generally better than Trans
B1rd

dNextGen wrote:

i'd just leave this here in case anybody that knows shit about power supplies happen to pass by

right now im trying to power R9 290 Tri-X with this PSU, it has 41.5Amps on the 12V rail

will that PSU be able to cope with the load ? most of review sites are getting 300 to mid 400 watts during load, but everyone keep telling me to buy a new 650W PSU
It should be fine, but if you're still looking for one I'd recommend you get a 550-600W PSU that at least has a 80+ certification. If it doesn't have that it means it's crappy and inefficient, you should get a quality PSU. Crappy PSU's tend to exaggerate their wattage capacity, and not to mention that all of them degrade as they get older.

SaigonAlice wrote:

it really shows how unfunny offtopic is when everyone is shitting themselves about a fucking brick wall

literally euthanize offtopic
if you don't like it, you're more than welcome to leave.
dNextGen

dNextGen wrote:

i'd just leave this here in case anybody that knows shit about power supplies happen to pass by

right now im trying to power R9 290 Tri-X with this PSU, it has 41.5Amps on the 12V rail

will that PSU be able to cope with the load ? most of review sites are getting 300 to mid 400 watts during load, but everyone keep telling me to buy a new 650W PSU
actually nvm, already have a 280X and buying a 290 just for shit and giggles would be stupid

B1rd wrote:

It should be fine, but if you're still looking for one I'd recommend you get a 550-600W PSU that at least has a 80+ certification. If it doesn't have that it means it's crappy and inefficient,
well, mine is made by SuperFlower though, literally the one company that can take on Seasonic head2head, mine doesnt have the 80+ certification because it only does 230VAC

thanks for the bother anyway
B1rd
I'm just going off my limited knowledge from when I built my pc a year or two ago
SaigonAlice

B1rd wrote:

if you don't like it, you're more than welcome to leave.
hi b1rd
SPOILER
http://edition.cnn.com/2014/06/18/world/asia/japan-manga-anime-pornography/index.html
Yuudachi-kun

Green Platinum wrote:

Khelly wrote:

These lunchables have transfats. Is that better than cisfats?
Cis is generally better than Trans
You heard it here folks; don't let saigonalice know.
kirueggy
nigga pissing me off by the minute tbh he was worse than 2014 me + sonatora combined
Bweh
He's nothing like either of you what are you even going off on.
SaigonAlice

kirueggy wrote:

nigga pissing me off by the minute tbh he was worse than 2014 me + sonatora combined
this is you and khel
show more
Please sign in to reply.

New reply