Become a part of the TranceAddict community!Frequently Asked Questions - Please read this if you haven'tSearch the forums
TranceAddict Forums > Main Forums > Chill Out Room > A program I wrote
Pages (4): « 1 2 [3] 4 »   Last Thread   Next Thread
Share
Author
Thread    Post A Reply
Quantized
Supreme tranceaddict



Registered: Jun 2003
Location: Scotland

quote:
Originally posted by Sunsnail
it wouldn't open


LOL it doesnt work on other computers? Oh well, i must really suck at programming

Old Post Dec-29-2004 23:49  United Kingdom
Click Here to See the Profile for Quantized Click here to Send Quantized a Private Message Add Quantized to your buddy list Report this Post Reply w/Quote Edit/Delete Message
itsTrueSonic
NullPointerException



Registered: Aug 2003
Location:

quote:
Originally posted by Nou
I havnt even looked at C# or .NET that much... I really want to get back into Visual Studio and start learning that stuff again, but work keeps me tied down in PHP and Javascripting and boring logic controls, nothing exciting!


haha .. i am the total opposite of you .. i do some moderate PHP, but i spend most of my work in Visual Studio .. don't work on .NET much, because i am but a poor student who can't afford expensive software like that .. ..

the job place has got me on Java, so i am pretty content at the moment .. i enjoy Java's flexibility as much as i enjoy Visual Basic's flexibility (if any VB developers know what i mean.. hahahha) ..

quote:
Originally posted by 3xx3r7
Java eats C++ for breakfast.


im my opinion, Java has the same amount of advantages over C++ anytime ..

i like Java's exception handling, library management (.jar), portability, and runtime error pickups ..

however, i like C++'s class management, use of user-defined types (struct keyword), kernel use (people may have trouble with this .. i dont know .. i haven't had problems with memory with C++), and pointer references (very complex for others, but i find it useful and cool .. well i am a nerd of course .. )

quote:
Originally posted by Trancedewd
LOL it doesnt work on other computers? Oh well, i must really suck at programming


bl60.bpl error??? .. working with borland c++ ?? .. you probably deployed it improperly .. hahaha ... that's the thing i hate with c++ .. in order to copy the .exe, you also sometimes need to copy the object files that is created with the executable ..

Old Post Dec-30-2004 01:00  Afghanistan
Click Here to See the Profile for itsTrueSonic Click here to Send itsTrueSonic a Private Message Add itsTrueSonic to your buddy list Report this Post Reply w/Quote Edit/Delete Message
digitalbreach
the sky is falling



Registered: Oct 2002
Location: TX TA #3 5p4c3 C!ty

quote:
Originally posted by itsTrueSonic
that's the thing i hate with c++ .. in order to copy the .exe, you also sometimes need to copy the object files that is created with the executable ..


probably the workspace file or any header files previously defined


___________________

You ain't no daisy, no daisy at all

Old Post Dec-30-2004 01:47  United States
Click Here to See the Profile for digitalbreach Click here to Send digitalbreach a Private Message Add digitalbreach to your buddy list Report this Post Reply w/Quote Edit/Delete Message
verndogs
GET THE TANK!



Registered: Jan 2004
Location: Sports Discussion Forum - NYC

C# is pretty much like Java, but has a few things here and there that makes it a bit better than Java.


___________________

quote:
[11:58] Bas //: fuck he's hot

Old Post Dec-30-2004 04:18  Philippines
Click Here to See the Profile for verndogs Click here to Send verndogs a Private Message Add verndogs to your buddy list Report this Post Reply w/Quote Edit/Delete Message
verndogs
GET THE TANK!



Registered: Jan 2004
Location: Sports Discussion Forum - NYC

In C#, when you have to use pointers, you have to label it as unsafe code.

For some reason that cracks me up.


___________________

quote:
[11:58] Bas //: fuck he's hot

Old Post Dec-30-2004 04:19  Philippines
Click Here to See the Profile for verndogs Click here to Send verndogs a Private Message Add verndogs to your buddy list Report this Post Reply w/Quote Edit/Delete Message
Sunsnail
Global Moderator



Registered: Sep 2004
Location:

version 2.0!
quote:
#include

using namespace std;

int main()
{
float a, b, c;
int x;
while ( x != 1) {
cout << "This is Fahrenheit to Celsius convertor v2.0.\n";
cout << "Please enter the amount of degrees you would like to convert.\n";
cin >> a;
b = a - 32;
c = b * .5555555555;
cout << "The degrees is " << c << " celsius.\n";
cout << "Would you like to exit the program? Enter 1 if yes, anything else to continue.";
cin >> x;
}
return 0;
}


clicky click linky linky

Now I have a question. I tried to say, "enter y to exit." but I dont know how exactly...

Old Post Dec-31-2004 07:48 
Click Here to See the Profile for Sunsnail Click here to Send Sunsnail a Private Message Add Sunsnail to your buddy list Report this Post Reply w/Quote Edit/Delete Message
sensorium
Supreme tranceaddict



Registered: Jun 2004
Location:

Try "char anything".

Then put "while(anything != y)" instead of the x.

Then cin anything.


___________________

Old Post Dec-31-2004 08:22  United States
Click Here to See the Profile for sensorium Click here to Send sensorium a Private Message Add sensorium to your buddy list Report this Post Reply w/Quote Edit/Delete Message
Sunsnail
Global Moderator



Registered: Sep 2004
Location:

I tried that, but it didn't work. compiler gave an error or something

Old Post Dec-31-2004 08:28 
Click Here to See the Profile for Sunsnail Click here to Send Sunsnail a Private Message Add Sunsnail to your buddy list Report this Post Reply w/Quote Edit/Delete Message
sensorium
Supreme tranceaddict



Registered: Jun 2004
Location:

When I said "anything" I meant a letter like "a".


___________________

Old Post Dec-31-2004 08:30  United States
Click Here to See the Profile for sensorium Click here to Send sensorium a Private Message Add sensorium to your buddy list Report this Post Reply w/Quote Edit/Delete Message
Sunsnail
Global Moderator



Registered: Sep 2004
Location:

right

Old Post Dec-31-2004 08:30 
Click Here to See the Profile for Sunsnail Click here to Send Sunsnail a Private Message Add Sunsnail to your buddy list Report this Post Reply w/Quote Edit/Delete Message
Sunsnail
Global Moderator



Registered: Sep 2004
Location:

ok so i have....

#include

using namespace std;

int main()
{
float a, b, c;
char *x;
while (strcmp(x,"y")) {
cout << "This is Fahrenheit to Celsius convertor v2.0.\n";
cout << "Please enter the amount of degrees you would like to convert.\n";
cin >> a;
b = a - 32;
c = b * .5555555555;
cout << "The degrees is " << c << " celsius.\n";
cout << "Would you like to exit the program? Enter y if yes, anything else to continue.";
cin >> x;
}
return 0;
}

but when i try and run the program, an error box opens and nothing happens

Old Post Dec-31-2004 08:40 
Click Here to See the Profile for Sunsnail Click here to Send Sunsnail a Private Message Add Sunsnail to your buddy list Report this Post Reply w/Quote Edit/Delete Message
sensorium
Supreme tranceaddict



Registered: Jun 2004
Location:

So I wasn't that far off the road.


___________________

Old Post Dec-31-2004 08:40  United States
Click Here to See the Profile for sensorium Click here to Send sensorium a Private Message Add sensorium to your buddy list Report this Post Reply w/Quote Edit/Delete Message

TranceAddict Forums > Main Forums > Chill Out Room > A program I wrote
Post New Thread    Post A Reply

Pages (4): « 1 2 [3] 4 »  
Last Thread   Next Thread
Click here to listen to the sample!Pause playbackHelp ID This: ID this tune! [2004] [2]

Click here to listen to the sample!Pause playbackAbsolom - "Air" [2005]

Show Printable Version | Subscribe to this Thread
Forum Jump:

All times are GMT. The time now is 14:36.

Forum Rules:
You may not post new threads
You may not post replies
You may not edit your posts
HTML code is ON
vB code is ON
[IMG] code is ON
 
Search this Thread:

 
Contact Us - return to tranceaddict

Powered by: Trance Music & vBulletin Forums
Copyright ©2000-2026, Jelsoft Enterprises Ltd.
Privacy Statement / DMCA
Support TA!