October 2019 15k SPAM Thread

Professional Engineer & PE Exam Forum

Help Support Professional Engineer & PE Exam Forum:

This site may earn a commission from merchant affiliate links, including eBay, Amazon, and others.
Status
Not open for further replies.
int did_pass(int score, int cut_score)
{
if(today.date() < release.date())
{
return -1;
}
else if((today.date() >= release.date()) && (state.to_string() != "PA"))
{
return (score >= cut_score) ? 1 : 0;
}
else
{
return wait();
}
}


I found this in some source code I took from NCEES.... 
I'm...not even going to pretend I understand this joke. It's ok, already feel dumb, now it's confirmed.

 
int did_pass(int score, int cut_score)
{
if(today.date() < release.date())
{
return -1;
}
else if((today.date() >= release.date()) && (state.to_string() != "PA"))
{
return (score >= cut_score) ? 1 : 0;
}
else
{
return wait();
}
}


I found this in some source code I took from NCEES.... 
As a coder I need this kind of laugh.

 
Status
Not open for further replies.
Back
Top