|
![]() |
Overclock.net - Overclocking.net > Software, Programming and Coding > Coding and Programming > Application Programming | |
C++ restart program help! :)
|
||
![]() |
|
|
LinkBack | Thread Tools |
|
|
#21 (permalink) | ||||||||||||||
|
AMD Overclocker
|
Quote:
__________________
Volkswagen Enthusiasts of OCN Aumotocnic "An unfortunate member of the overclock.net insomnia club" Quebec Overclockers - 8019 in 3dMark06s939 Manny 4600+ @ 2809Mhz @ 1.425V (9 hours Orthos blend test stable - 24/7 Usage) - http://valid.x86-secret.com/show_oc.php?id=289741 @ 2945Mhz @ 1.45V - http://valid.x86-secret.com/show_oc.php?id=276669
|
||||||||||||||
|
|
|
|
#22 (permalink) | |||||||||||||
|
Every base is base 10
|
Code:
int main ()
{
do{
cout << "How much money do you want to convert?: ";
cin >> money;
cout << "Do you want to calculate tax? (y/n): ";
cin >> tax_option;
if(tax_option == 'y')
{
cout << "What % is the tax?: ";
cin >> tax_number;
}
convert_money(money, tax_number, tax_option);
do{
cout << "nnDo you want to restart? (y/n): ";
cin >> quit;
}while(quit != 'y' && quit != 'n');
}while(quit == 'y');
}
|
|||||||||||||
|
|
|
|
#23 (permalink) | ||||||||||||||
|
Linux Lobbyist
|
... speaking of currency converters, OS X has one in the dashboard ^_^
Next time I hit a code snag, I'm gonna ask here, this coding section is so active..
__________________
Quote:
(450x8) (417x9) (425x9)![]()
|
||||||||||||||
|
|
|
|
#24 (permalink) | ||||||||||||||
|
Mmmm! Toast!
|
Quote:
|
||||||||||||||
|
|
|
|
#25 (permalink) | |||||||||||||
|
AMD Overclocker
|
Thanks for all your help guys. I know Google has one like this online...but this was just a test.
I don't really see any big uses for C++...could someone name some to me? :S
__________________
Volkswagen Enthusiasts of OCN Aumotocnic "An unfortunate member of the overclock.net insomnia club" Quebec Overclockers - 8019 in 3dMark06s939 Manny 4600+ @ 2809Mhz @ 1.425V (9 hours Orthos blend test stable - 24/7 Usage) - http://valid.x86-secret.com/show_oc.php?id=289741 @ 2945Mhz @ 1.45V - http://valid.x86-secret.com/show_oc.php?id=276669
|
|||||||||||||
|
|
|
|
#26 (permalink) | |||||||||||||
|
Off By 340 Undecillion
|
Big things like Operating systems, office suites, engineering tools, etc.
__________________
Congratulations! You have found the secret text! You get a cookie.
|
|||||||||||||
|
|
|
|
#27 (permalink) | |||||||||||||
|
Every base is base 10
|
Are you serious? It has all of the speed, efficiency, and low-levelness of C and all of the advantages and simplicity that Object-oriented languages such as Java give.
|
|||||||||||||
|
|
|
|
#28 (permalink) | |||||||||||||
|
Mmmm! Toast!
|
what good is it? you use it to write programs... ANY program.
|
|||||||||||||
|
|
|
|
#29 (permalink) | |||||||||||||
|
AMD Overclocker
|
Can it be used to write programs that aren't DOS based? I hope that made some sense...
![]()
__________________
Volkswagen Enthusiasts of OCN Aumotocnic "An unfortunate member of the overclock.net insomnia club" Quebec Overclockers - 8019 in 3dMark06s939 Manny 4600+ @ 2809Mhz @ 1.425V (9 hours Orthos blend test stable - 24/7 Usage) - http://valid.x86-secret.com/show_oc.php?id=289741 @ 2945Mhz @ 1.45V - http://valid.x86-secret.com/show_oc.php?id=276669
|
|||||||||||||
|
|
|
|
#30 (permalink) | |||||||||||||
|
Every base is base 10
|
You can use a compiler to compile the C code into machine code. Machine code is binary code that can be executed by the CPU directly.
|
|||||||||||||
|
|
![]() |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
|
|