Jump to content

InovFX

Members
  • Posts

    21
  • Joined

  • Last visited

Everything posted by InovFX

  1. InovFX

    C/c#/c++

    Try Microsoft Visual Basic 2005 Express BETA (FREE) : http://lab.msdn.microsoft.com/express/vbasic/default.aspx OR, if you interested in C/C++, try Bloodshed Dev-C++ : http://www.bloodshed.net/dev/
  2. Yeah, that's strange..... Someone probably has hacked your computer, and change the power scheme....
  3. Thank's dave !! Now, I know how to use sprintf(); !!
  4. Soryy, this above should be : This will conver the integer t to a string....
  5. Sorry dave, I've tried it on GCC 3.4.2, and the result was strange. It's not create like "1.txt", "2.txt", "3.txt", etc... temp = i + ".txt"; This will convert the integer temp to string.... So, the result become strange....
  6. Do you mean like this : #include <iostream> #include <fstream> #include <stdlib.h> // So we can use system("pause"); using namespace std; int main() { char* filename[10]; filename[1] = "1.txt"; filename[2] = "2.txt"; filename[3] = "3.txt"; filename[4] = "4.txt"; filename[5] = "5.txt"; filename[6] = "6.txt"; filename[7] = "7.txt"; filename[8] = "8.txt"; filename[9] = "9.txt"; filename[10] = "10.txt"; for (int i = 0; i <= 10; i++) { ofstream fileout; fileout.open(filename[i]); fileout.close(); } system("pause"); return 0; } ----- ?
  7. InovFX

    C/c#/c++

    Yes, C++ is powerful than others. But, I like Microsoft PL, it's easy...
  8. Wich renderer did you use : - Direct 3D - OpenGL - Software Renderer
  9. You should probably reduce the polygons and vertexes. What's your VGA ? How many Polygons and Vertexes are there in your model ?
  10. InovFX

    C/c#/c++

    Yeah I agreed too with Cadmus' opinion. BTW, If you use Visual C++ .NET, you can do it (make a classic "HelloWorld!" program) like C#.NET programming. Like this below : #using <mscorlib.dll> // We aren't going to use <iostream> but <mscorlib.dll> using namespace System; void main() { Console::WriteLine("HelloWorld!"); } But, every .NET Application can only run with a machine with .NET Framework installed on the machine. You can download the .NET Framework (The latest version is 2.0 BETA) at http://msdn.microsoft.com/net/ .
  11. InovFX

    C/c#/c++

    Oh ****. Sorry, I'm wrong DELL LABS Should be Bell Labs. When I posted that repply, I just dreamed for a Dell PC. Hahaha.....
  12. InovFX

    C/c#/c++

    OK, Just a little, I'll explain youl, Remember JUST A LITTLE This is a classic "Hello World!" application. noz92, your age is very young, it was a good age to learn programming. I learned it since I was 12 years old (Now, I'm 13). As you know C, C++ and C# are DIFFERENT (C and C++ not too different) : For example : C# (Courrently I use Visual C# .NET 2003) using System; class HelloWorld { static void Main() { Console.WriteLine("Hello World!"); Console.WriteLine("Type a word [i.e. q], then press enter to exit!"); Console.Write("... "); Console.ReadLine(); } } C/C++ (Currently I use Dev-C++ BETA 5 R 9 (4.9.9.2) with GCC 3.4.2) #include <iostream> using namespace std; int main() { int quit; cout << "HelloWorld!" << endl; cout << "Type a word [i.e. q], then press enter to exit!" << endl; cout << "... "; cin >> quit; return 0; } C and C++ developed by DELL LABS and C# is a Visual Basic alike PL but syntax is like C/C++. Developed by Microsoft. --
  13. Sorry, that above is wrong, the right is : Due to the time for the brother in the spaceship more slowly, as if time is stopped.
  14. I vote on another solar body due to I don't know.....
  15. It's due to the time on the brother at spaceship that travels near the light speed is faster than the time on the brother at the earth. I would have tought, if we travels near the lightspeed, we looks other people as if they're stopped (It's caused we travels very fast), at the contrary, we can't look the people who travel near the lightspeed(It's caused we are very slow). If the brother at the spaceship that travels near the lightspeed during 10 years, the brother at the earth is still in one second. -- Sorry, my english bad.
  16. TV in my country (There are MetroTV, Trans, etc) reportin 79,000 Dead in Indonesia (Nangroe Aceh Darussalam & North Sumatra). And Up to 125,000 Dead in Suth Asia and South East Asia
  17. InovFX

    A Question

    I change my question again.. Look at this picture below : The Man 2 running around point x with velocity 300.000km/s (lightspeed). Can man 1 see the man 2 ? Can the man 2 see the man 1 ? I think the man 1 can't see the man 2 because he running very fast. But can the man 2 see the man 1 ?
  18. InovFX

    A Question

    Sorry, that question is wrong, and here the correct question : Look at this picture : The car 1 run with v=1km/sec and the car 2 run with v=1m/sec. Can the car 1 see the car 2 ? Can the car 2 see the car 1 ? How and why ?
  19. InovFX

    A Question

    The cars are travelling towards each other.
  20. InovFX

    A Question

    Hi, I'm new in here. I'm only 13 years old. I have a question : There are two car in a road. The first car run with speed 600 km/hour. And the second car run with speed 20 km/hour. How the first car look the second car ? How the second car look the first car ? Why ? Sorry if my english not good....
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.