Jump to content
HybridZ

Challenger

Donating Members
  • Posts

    3410
  • Joined

  • Last visited

  • Days Won

    3

Everything posted by Challenger

  1. Ive got another one for you guys. Heres the code. Dont mind the part concerning the total and prevtotal. We were just trying to find when it switched from positive to negative in an earlier version of the program. Is there anyway to make this a screen saver? It goes on for quite a long time and if needed it could be looped so it repeats. Also with my green font in the command prompt it looks like the matrix! I think this would be an awesome screen saver, and its easily modified so it only displays ones and zeros so it looks like binary code... All you have to do in this case is remove the C variable from the equation for the total.
  2. Yeah. Havent you ever seen ads that say "Used cars in SPOKANE!" "Meet singles in SPOKANE!" But instead of Spokane Austin.
  3. For nearly $1000 you could go to standalone, if it was cheaper It would be nice.
  4. I dont think pressure can get into the valve cover through the valves either...
  5. Sounds pretty cool! What was the price? Did he mention selling any of them or did he have any pictures?
  6. Are you going to make new end pieces? The part that holds the bolt? Will it just be SS strap of some sort? About what thickness and width?
  7. Oh yeah sorry, forgot thats what you said in the original post. Thing is if theres a spec sheet on the datsuns braking distance or time it would be in a case where they arent locked up. Hopefully someone could actually test it by locking up their brakes and timing it.
  8. The police department has people whos job is to find out how fast people were going before they hit a car, ran off the road, etc. Really sorry to hear about your car. You had a really nice car. Was the jeep the lady that pulled out? It looks pretty untouched.
  9. Wow, those look pretty nice. Big improvement. How did you do the black trim inbetween the grey areas?
  10. Solution! Leave alone for 2 months, then use jumper cables. At some point Im going to just rip apart alot of the engine bay and clean things up. Ive got an N42 intake and a billet fuel rail that need a home. At that point Ill probably change out the distributor, coil and plug wires. But Im kind of busy with school so it might be awhile.. like summer.
  11. What year? 81, 82-83
  12. Was there an l28r in other parts of the world? I know you want 10 sec 1/4's but what are your power goals?
  13. What do you mean reving an engine is only for keeping an engine from stalling?
  14. Yeah head as in cylinder head. Also there isnt a gasket between the block and the header, they dont physically touch...
  15. Ok I ended up figureing out the pow(radius,2) with the help of a friend at school (CS major). It seems to work fine now for any value.
  16. Well I had a 74 2+2 and have a 78 2+2 and the difference I noticed was the weatherstipping was on the body on the 74. On my 78 it has rubber on the door jam and the outside of the door window frame and quarter window frame. Is that the way it is for yours? I cant say what to do on the 74 but you might consider trying to get some of the later model window frames and just get the later weatherstripping. The 1/4 weatherstripping is easily found on ebay and other places. The piece that cant be found is the piece that attaches to the top of the 1/4 window frame. You can just use some of the weatherstripping pieces that go on the top of the door window frame instead of a replacement piece. Its identical just a shorter piece. On the doors I just bought three couple pieces and spliced it in. Its a little tight now but it should soften up once its outside in the heat.
  17. Ok thanks, Ill try that. I ended up changing the doubles of radius, height and quantity to int. It works that way but Id like to be able to type in 3.4 instead of just 3 for the radius or height.
  18. Im working on a program for C for engineers. Its not an assignment just trying to practice some and get used to variables, printing, taking user imput, doing calculations, etc. Im making a simple program to calculate what it costs to fill n tanks of radius r and height h with a certain material. Gravel, water, wheat or asphalt... all I could think of. I then have prices for each of these per unit of volume so it will show how much it costs to fill the tanks. But Im having some issues getting it to work. ----------------------------- #include int main() { double radius; double height; double quantity; double area; double volume; int material; double unit_cost; double total_cost; printf("nWhat is the radius of your storage tank?n"); scanf("%1f", &radius); printf("What is the height of your storage tank?n"); scanf("%1f", &height); printf("How many tanks would you like to build?n"); scanf("%1f", &quantity); area = 3.14 * radius * radius; volume = area * height * quantity; printf("What would you like to store in these containers?n1) Graveln2) Watern3) Wheatn4) Asphaltn"); scanf("%d", &material); if (1 == material) { unit_cost = 1.56; } if (2 == material) { unit_cost = .65; } if (3 == material) { unit_cost = 3.24; } if (4 == material) { unit_cost = 4.11; } total_cost = volume * unit_cost; printf("nIt will cost you %f dollars to fill up all your tanks with the nmaterial you selected.", total_cost); return 0; } -------------------------- Can anyone give me an tips on what to change or if there is anything really obvious? It seems to not even recognize values you put in for the radius and height... Thanks BTW, Im using DevC++ as my compiler.
  19. ZYA got his dual TB intake set up, Derek got his custom intake finished and running. And a recent thread actually presented the answer to life. http://forums.hybridz.org/showthread.php?t=147114&highlight=answer+life It definitely changed my life. Cant really think of anything else sadly, I think my brain is fried from school.. Welcome back.
  20. Garden gnomes usually, its like alcohol to them. Or you just cant see it burning.
  21. Ill give you 2 hundo for the grey one.

  22. Id get a stock one to make sure thats the problem...
×
×
  • Create New...