Conjoint Gaming [Game On]
CG Technical Area => Programming => Topic started by: Blackllama on May 30, 2011, 06:38:47 PM
-
I've decided to review some of my c++, I wrote some useless codes and now I'm gonna make a quick number guessing game. If you have any cool c++ programs post them plox.
#include <iostream>
#include <ctime>
using namespace std;
int main ()
{
main:
srand(time(NULL));
unsigned char n = rand() % 100+1;
int g;
cout << "Guess a number between 1 and 1oo (you get cake if you win): ";
while (g != n) {
cin >> g;
if (g > n)
cout << "\nLower: ";
else if (g < n)
cout << "\nHigher: ";
}
cout << "You win! Congradulations. Sorry, no cake, it was a lie.\n";
goto main;
return 0;
}
-
ahh the classic Number game.
Yeah,
-
:< I think C# is horrible already...
Here's aspx. (Some dutch content)
Nevermind stored it locally.
Posting soon!
-
I made a subscription based application that plays an RPG for you without breaking the TOS. Its a few thousand lines though...
-
#include <iostream>
using namespace std;
int main(void)
{
cout<<"░░░░░▄▄▄▄▀▀▀▀▀▀▀▀▄▄▄▄▄▄░░░░░░░"<<endl;
cout<<"░░░░░█░░░░▒▒▒▒▒▒▒▒▒▒▒▒░░▀▀▄░░░░"<<endl;
cout<<"░░░░█░░░▒▒▒▒▒▒░░░░░░░░▒▒▒░░█░░░"<<endl;
cout<<"░░░█░░░░░░▄██▀▄▄░░░░░▄▄▄░░░░█░░"<<endl;
cout<<"░▄▀▒▄▄▄▒░█▀▀▀▀▄▄█░░░██▄▄█░░░░█░"<<endl;
cout<<"█░▒█▒▄░▀▄▄▄▀░░░░░░░░█░░░▒▒▒▒▒░█"<<endl;
cout<<"█░▒█░█▀▄▄░░░░░█▀░░░░▀▄░░▄▀▀▀▄▒█"<<endl;
cout<<"░█░▀▄░█▄░█▀▄▄░▀░▀▀░▄▄▀░░░░█░░█░"<<endl;
cout<<"░░█░░░▀▄▀█▄▄░█▀▀▀▄▄▄▄▀▀█▀██░█░░"<<endl;
cout<<"░░░█░░░░██░░▀█▄▄▄█▄▄█▄████░█░░░"<<endl;
cout<<"░░░░█░░░░▀▀▄░█░░░█░█▀██████░█░░"<<endl;
cout<<"░░░░░▀▄░░░░░▀▀▄▄▄█▄█▄█▄█▄▀░░█░░"<<endl;
cout<<"░░░░░░░▀▄▄░▒▒▒▒░░░░░░░░░░▒░░░█░"<<endl;
cout<<"░░░░░░░░░░▀▀▄▄░▒▒▒▒▒▒▒▒▒▒░░░░█░"<<endl;
cout<<"░░░░░░░░░░░░░░▀▄▄▄▄▄░░░░░░░░█░░"<<endl;
return 0;
}
-
#include <iostream>
using namespace std;
int main(void)
{
cout<<"░░░░░▄▄▄▄▀▀▀▀▀▀▀▀▄▄▄▄▄▄░░░░░░░"<<endl;
cout<<"░░░░░█░░░░▒▒▒▒▒▒▒▒▒▒▒▒░░▀▀▄░░░░"<<endl;
cout<<"░░░░█░░░▒▒▒▒▒▒░░░░░░░░▒▒▒░░█░░░"<<endl;
cout<<"░░░█░░░░░░▄██▀▄▄░░░░░▄▄▄░░░░█░░"<<endl;
cout<<"░▄▀▒▄▄▄▒░█▀▀▀▀▄▄█░░░██▄▄█░░░░█░"<<endl;
cout<<"█░▒█▒▄░▀▄▄▄▀░░░░░░░░█░░░▒▒▒▒▒░█"<<endl;
cout<<"█░▒█░█▀▄▄░░░░░█▀░░░░▀▄░░▄▀▀▀▄▒█"<<endl;
cout<<"░█░▀▄░█▄░█▀▄▄░▀░▀▀░▄▄▀░░░░█░░█░"<<endl;
cout<<"░░█░░░▀▄▀█▄▄░█▀▀▀▄▄▄▄▀▀█▀██░█░░"<<endl;
cout<<"░░░█░░░░██░░▀█▄▄▄█▄▄█▄████░█░░░"<<endl;
cout<<"░░░░█░░░░▀▀▄░█░░░█░█▀██████░█░░"<<endl;
cout<<"░░░░░▀▄░░░░░▀▀▄▄▄█▄█▄█▄█▄▀░░█░░"<<endl;
cout<<"░░░░░░░▀▄▄░▒▒▒▒░░░░░░░░░░▒░░░█░"<<endl;
cout<<"░░░░░░░░░░▀▀▄▄░▒▒▒▒▒▒▒▒▒▒░░░░█░"<<endl;
cout<<"░░░░░░░░░░░░░░▀▄▄▄▄▄░░░░░░░░█░░";
system("pause>nul");
return 0;
}
That is how it should look lol. First of all, It doesn't look anywhere near a troll face in the cmd line. Second, I added the system("pause>nul");
because if you didn't, it would just close as soon as it ran. Son, I am disappoint.
EDIT:
Also, I wrote a few programs on the TI-84 calculator like the Pythagorean theorem, and I re-wrote it in c++. I may have written the same thing on python at one point as well, which, let me just say, is much better for mathematics. C++ just makes it a pain, none the less I still made one.
Here.
#include <iostream>
#include <math.h>
using namespace std;
int main ()
{
cout << "Pythagorean theorem calculator." << endl << "~~~~~~~~~~~~~~~~~~~~~~~~~" << endl << "Enter a: ";
int a, b;
cin >> a;
system("CLS");
cout << "Enter b: ";
cin >> b;
system("CLS");
cout << "c = " << sqrt(pow(a, 2)+pow(b, 2)) << "."
system("pause>nul");
return 0;
}
-
1800 lines on here? Meh... If anyone wants to buy some code for Ashen Empires to bypass the macro check, let me know :-)
-
so taking a c++ course and im not learning diddly quawt from my teacher even tho shes really nice.. i have resorted to youtube and online help which is helping but it could only go so far..
im a total noob and im trying to make something as simple as a calculator for a food charge ex:
should ask you for the food charge and calculate the amount of a 18% tip and 7% sales tax and the toTAL.
this is what i have so far:
#include <iostream>
using namespace std;
int main()
{
cout << "Enter charge for the food \n";
const double PERCENT_TIP = 0.18;
system("pause");
return 0;
}
i dont know what function i put or how to put in the percentages into the code. probably did that wrong helpeth
-
:< I think C# is horrible already...
Here's aspx. (Some dutch content)
Nevermind stored it locally.
Posting soon!
OP SURELY DELIVERS...
-
Nice necro there Burgers :P
-
Me two years ago is just eww. I don't need to see this shit.
-
idk ,, but i was just posting where i thought talking about c++ might go and maybe get some pointers... ima go sit in my darkest corner now :-[
-
idk ,, but i was just posting where i thought talking about c++ might go and maybe get some pointers... ima go sit in my darkest corner now :-[
Don't be so afraid to start new threads Burgs :P
-
so taking a c++ course and im not learning diddly quawt from my teacher even tho shes really nice.. i have resorted to youtube and online help which is helping but it could only go so far..
im a total noob and im trying to make something as simple as a calculator for a food charge ex:
should ask you for the food charge and calculate the amount of a 18% tip and 7% sales tax and the toTAL.
this is what i have so far:
#include <iostream>
using namespace std;
int main()
{
cout << "Enter charge for the food \n";
const double PERCENT_TIP = 0.18;
system("pause");
return 0;
}
i dont know what function i put or how to put in the percentages into the code. probably did that wrong helpeth
First off, you need an int for your original input variable.
Second, you need to use the cin function to allow for input from the command window. The syntax should be something like cin >> variable_name;
Finally, you need to decide how the total is being calculated. Is the tip 18% of the original price, and the tax is 7% of that new total, or are they both applied to the original price?
i.e. one formula would be variable_name*1.18*1.07, while the other would be something like variable_name* 1.18 + variable_name*.07.
From there, it's pretty easy. You just need to do a cout << with your variable name or whatever text you want, and you should be good.
#include <iostream>
using namespace std;
int main()
{
int price;
int total;
const double PERCENT_TIP = 0.18;
const double TAX = .07
cout << "Enter charge for the food \n";
cin >> price >> \n;
total = price*PERCENT_TIP + price*TAX + price;
cout << "The final total is: " << total << \n;
system("pause");
return 0;
}
Arrows on the cin/cout might be backwards, but I don't have a compiler to make sure, and it's an easy fix. Also, when you write code, make sure you do all your variable/const/define declarations at the top of your program. I think you can declare stuff mid-program in something like MATLAB, but I don't think C++ really lets you do that, and even if it does, it's not good practice to do that.