Recent content by ermines

  1. E

    Solving a Biot-Savart Problem: Idx, r and dB

    hmmm...never thought of that question, marlon... i suppose that it is an infinite wire? or can't it just be just a point with such property? will it actually make a difference?
  2. E

    Solving a Biot-Savart Problem: Idx, r and dB

    i personally think that this is just a very simple problem since the problem only requires plugging the right values into the formula. I'm just having trouble with one minor detail. Homework Statement For the current element Idx(ax+ay) A situated at P(1,-2,2), find the magnetic flux...
  3. E

    How Did the Genealogy of Exams Evolve?

    hello guys. since i didn't saw any philosophy subforum in the coursework questions thread, i decided to start my thread here at the other sciences section. i really wasn't sure if i should have put this in the philosophy thread but oh well... basically, I've been reading a lot of foucault...
  4. E

    Comp Sci C++ Code: Searching for a specific string

    thanks for all the advice, Fermat :smile: . here's my working code... #include <fstream> #include <iostream> #include <string> #include <cstring> #include <cstdlib> //for exit using namespace std; int main (int argc,char *argv[]) { if(argc!=3) //argc should be 3 for correct...
  5. E

    What Defines Humanity: A Philosophical Exploration

    umm, probably "I". so, How do I become Human, truly human?
  6. E

    Comp Sci C++ Code: Searching for a specific string

    anyway, i did some modifications in the file since its messy like having two declarations of ifstream (my bad here :frown: ). #include <fstream> #include <iostream> #include <cstdlib> //for exit using namespace std; int main (int argc, char *argv[]) { if (argc != 3) //argc should...
  7. E

    Comp Sci C++ Code: Searching for a specific string

    here my header files... #include <fstream> #include <iostream> #include <cstdlib> //for exit i'll take your advice. actually, that's also the part I'm very doubtful off. I'm still trying to workout to fix it too.
  8. E

    Comp Sci C++ Code: Searching for a specific string

    umm, anyone who could help me write a code wherein, given an input file, it searches for a word inputed by the user, then outputs the result (how many times it appeared in the input file) in an output file. This program also uses 2 command line arguments. The first argument is the word to search...
  9. E

    What Defines Humanity: A Philosophical Exploration

    So, may I ask you guys, What Does it Mean to Be Human? After all the studying of different philosophies, what makes Human Human? How does one become Human? What is the philosophy of Being Human?
  10. E

    C/C++ Visual C++ vs C++: Understanding the Difference

    Umm guys, is visual c++ a very different programming language than c++. I mean, I installed a copy of visual c++ and looked at the pre-made template of hello world but saw that it is very different from the normal source code for c++. I have this code made from devcpp, the calculator if you...
  11. E

    C/C++ Catchinmg the Enter Key for c++

    Hello guys. I'm trying to do the command "PLEASE PRESS ENTER KEY TO RETURN TO MAIN MENU." The problem is that I don't know how to catch this enter key. I do know that its ascii value is 13. I tried using sscanf and getch but can't seem to make it work. void StockBroker::showAllBalances()...
  12. E

    Implementing Various Calculations ith only + and - in c++

    umm guys, i just have this other question. How do i implement the "Press enter key to continue"? I researched that the ascii value of enter key is 13. so do i just do an if cin=='13' for the cin if it is equal to 13? But what would be its difference to the number 13?
  13. E

    Help: How to Put Twisting Effect on Flash

    umm guys, just experimented with swishmax. i saw this effect called corkscrew that smehows resembles a twisting effect. I just need to make very small rectangles and line them up to each added then add the effect to each one of them and each one of them slowly turns, creating a seemingly...
  14. E

    C++ Program Ideas: Creative Solutions for You

    i see. thanks for the ideas guys. I currently trying to understand basic openGL, as suggested by neurocomp2003. I actually first planned to make my own chinese chess program but thought i would finish it in one month's time since I'm not that good yet. I'm still even having a hard time with...
  15. E

    Help: How to Put Twisting Effect on Flash

    Hello guys. I'm having trouble of how to produce a twisting effect/motion in flash mx 2004. The twisting I'm referring to is when you twist a rod at one end and the other end is fixed. It is like the concept of torsion. So anyone have any ideas how to make this? An .fla perhaps?
Back
Top