Recent content by Potential

  1. P

    Solving a Problem with Bisection Method (C Program)

    You will probably get some help faster my learning to format code so someone can read it. main() { float a,b,c,x1,x2,x,series; double d; printf("enter a,b,c and x1(pos) & x2(neg)"); scanf("%f%f%f%f%f", &a, &b, &c, &x1, &x2); read: x = (x1 + x2) / 2; series = a * x *...
  2. P

    Winning Prizes with Monte Carlo Method

    In the battleship game reference I posted, there would be two arrays, one for each player. double rgPlayerValuesA[nRows][nCols] = { 0.0 }; double rgPlayerValuesB[nRows][nCols] = { 0.0 };
  3. P

    Winning Prizes with Monte Carlo Method

    If you keep providing hints, maybe I could help you.
  4. P

    Converting Fahrenheit & Celsius: A C Programming Guide

    What is the indication leading you to believe there is somethig wrong with your compiler? Also, which compiler product are you using?
  5. P

    C/C++ Integrating Numerical Methods in VC++: Library Recommendations and Compatibility

    I place all of the following information in the stdafx.h file. This is an example linking to Oracle libraries... #include "C:\Oracle\Ora92\oo4o\CPP\INCLUDE\oracl.h" #ifdef _DEBUG #pragma comment(lib, "C:\\Oracle\\Ora92\\oo4o\\CPP\\LIB\\DBG\\ORACLM32.lib") #else // _DEBUG...
  6. P

    Advanced published papers regarding valid unification theories?

    TY BenTheMan! TY Marcus! Marcus...very interesting you mentioned fractal... ...because, allot of information can be squeezed in a fractal similar to a hologram...
  7. P

    Help Solving a Factorial Program with Infinite FOR Loop

    i+=2; i=i+2; same the first statement is preferred because it has 4 keystrokes instead of 5 keystrokes also, it is easier for me to read like this: i += 2; i = i + 2; If you have doubt about operator precedence, you can use ++count instead of count++
  8. P

    Advanced published papers regarding valid unification theories?

    Questions: Where can I obtain the most advanced published papers regarding valid unification theories? If there are none, which published papers will get me closest when combined in their respective categories? Comment: It is obvious to me through speculation, physical laws have yet to...
  9. P

    News Merill Lynch's chief North America economist believes we are in a depression

    Notice the accounting trick in the article below regarding deferred bonuses that could have originated with tax dollars. What? Bonus for losing money? If I were the Chief North American ML economist and didn't receive my normal $1-3M bonus, heck, I would think we were in a depressioin also...
  10. P

    News Merill Lynch's chief North America economist believes we are in a depression

    In your reference, David mentions "advocating high fixed-income orientation". First a humorous remark and then a serious contrarian remark... (1) Humorous: does David have the office across the hallway from John Thain's old office which just received $1M in renovations? (2) Serious...
  11. P

    C/C++ C++ Nested Classes: Advantages & Disadvantages

    In my original post, you may have noticed I mentioned non-nested inheritance and nested inheritance and the two primary concepts I presented. We can take the nested non-inheritance concept one notch further, to test the limits of a more scalable system. Here, I present an example of nested...
  12. P

    C/C++ C++ Nested Classes: Advantages & Disadvantages

    There is much more of a difference in nested classes relative to non-nested classes than what meets the eye. The naming convention, or the namespace, of course changes and how one accesses objects changes. However, imagine the potential difference in performance as I hope to convey. In...
  13. P

    Secrets of Skull & Bones: Uncovering the Mysterious Society

    I have heard of the organization. I have also heard that George W. is a member. I continued with the research and discovered much more information worth reading.
  14. P

    C/C++ Learn Programming Now: C++ & Java Basics for Computer Engineering Majors

    You may want to go to several job web sites, where one would normally go to find a job, to get a feel of the market demand and salary ranges for your area you intend to eventually reside. My intention is not to encourage you in choice of programming language or operating system targets or even...
  15. P

    News What is wrong with the US economy? Part 2

    LOL. I wouldn't worry too much about the layoffs. Once the $1B M3 issued via private corporation Federal Reserve hits our pockets, start looking for the next bubble. A hyper-bubble, like no bubble we have seen before. Bubble went from Japan, to US, to China, in almost successive decades...
Back
Top