yea shes my daily gurl
SoCal General Chat
Collapse
This is a sticky topic.
X
X
-
If your car is your dd, don't turbo it.Comment
-
-
^ Yeah, Nigel and me had our cars turbo and they were DD.Comment
-
Sup
jou ma se poes in 'n fishpaste jar.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~
Transaction FeedbackComment
-
If you do it right and have a good tune 10psi is fine for a daily. Anything more then that will require a new clutch soon. I put 15k trouble free and hard miles on my setup at 14k. I'm going to up the boost to 20 soon and drive it till I finish my 2.8. Then add more boost. :evil:Your signature picture has been removed since it contained the Photobucket "upgrade your account" image.
www.gecoils.com
My euro 316 project Transaction FeedbackComment
-
-
-
//Roche, Travis
//888375331
//3.24.12
//Lab 3
//P0247
#include <iostream>
#include <iomanip>
#include <string>
using namespace std;
int main()
{
char initial1, initial2, initial3;
int side1, side2, side3;
cout << "Enter your initials: ";
cin >> initial1 >> initial2 >> initial3;
//initials part
//if-else statement
if ((initial1 >= 'A' && initial1 <= 'Z') || (initial1 >= 'a' && initial1 <= 'z')) //if #1
if ((initial2 >= 'A' && initial2 <= 'Z') || (initial2 >= 'a' && initial2 <= 'z')) // if #2
if ((initial3 >= 'A' && initial3 <= 'Z') || (initial3 >= 'a' && initial3 <= 'z')); //if #3
else
cout << "Invalid character for initial 1. Program is now terminating..."; //else #3
else
cout << "Invalid character for initial 2. Program is now terminating..."; //else #2
else
cout << "Invalid character for initial 3. Program is now terminating..."; //else #1
//triangle part
//if-else statement
cout << "Enter three sides of a triangle: " << endl;
cin >> side1 >> side2 >> side3;
/*Only do work if all three sides are positive non-zero values*/
if((side1 >= 0) && (side2 >= 0) && (side3 >= 0))
{
/*Next we check if the triangle inequality property is respected*/
if( (side1+side2 > side3) && (side2+side3 > side1) && (side1+side3 > side2))
{
/*Next we check for special triangles - Isosceles or Equilaterals*/
if((side1 == side2) || (side2 == side3) || (side3 == side1))
{
/*Check for special case of Isosceles ALL lenths are equal*/
if((side1 == side2) && (side2 == side3) && (side3 == side1))
{
cout << "\nThis is an Equilateral Triangle. " << endl;
}
/*Otherwise it's just a regular Isosceles*/
else
{
cout << "\nThis is an Isosceles Triangle. " << endl;
/*Next we check for right angles in Isoceles*/
/* applying pythagorean here as (a*a + b*b = c*c) */
if( (side1*side1 + side2*side2 == side3*side3) || (side1*side1 + side3*side3 == side2*side2) || (side3*side3 + side2*side2 == side1*side1))
{
cout << "\nThis Isosceles Triangle has a right angle. " << endl;
}
}
}
/*If neither of the 3 sides are equal pairs then this is a regular triangle*/
else
{
cout << "This is a Scalene Triangle. " << endl;
/*Next we check for right angles in Scalenes*/
/* applying pythagorean here as (a*a + b*b = c*c) */
if( (side1*side1 + side2*side2 == side3*side3) || (side1*side1 + side3*side3 == side2*side2) || (side3*side3 + side2*side2 == side1*side1))
{
cout << "\nThis Scalenes Triangle has a right angle. " << endl;
}
}
}
/*Otherwise we print an inequality error message */
else
{
cout << "\nA triangle's three sides must respect the triangle inequality. " << endl;
}
}
/*Otherwise print a negatiev-sides error message*/
else
{
cout << "\nA triangle needs to have 3 sides of non-negative length. " << endl;
}
system("pause");
return 0;
}
「'89 BMW 325is | '02 Mitsubishi Montero Limited | '2005 GMC Sierra 2500 Duramax | 2007 BMW M5 」
「my feedback thread」Comment
-
-
Is there anywhere relatively close to OC that carries IS lips?1988 E30 M3, Alpineweiss ///
iloveyouComment
Comment