Jump to content

InovFX

Members
  • Posts

    21
  • Joined

  • Last visited

About InovFX

  • Birthday 11/09/1991

Contact Methods

  • Website URL
    http://member2.atspace.com/inov/

Profile Information

  • Location
    Republic of Indonesia
  • Interests
    Programming
  • College Major/Degree
    Not Yet
  • Favorite Area of Science
    Wherever
  • Biography
    Smart, and Jokeful
  • Occupation
    Student

Retained

  • Quark

InovFX's Achievements

Quark

Quark (2/13)

10

Reputation

  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.....
×
×
  • 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.