Conjoint Gaming [Game On]

CG Technical Area => Programming => Topic started by: Blackllama on May 30, 2011, 06:38:47 PM

Title: C++ post your shitt
Post 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.

Code: [Select]
#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;
}
Title: Re: C++ post your shitt
Post by: Inject OH 4 on May 31, 2011, 02:51:18 AM
ahh the classic Number game.

Yeah,
Title: Re: C++ post your shitt
Post by: Finniespin on May 31, 2011, 05:54:03 AM
:< I think C# is horrible already...

Here's aspx. (Some dutch content)
Nevermind stored it locally.

Posting soon!
Title: Re: C++ post your shitt
Post by: Acecool on May 31, 2011, 06:47:02 PM
I made a subscription based application that plays an RPG for you without breaking the TOS. Its a few thousand lines though...
Title: Re: C++ post your shitt
Post by: Guvnuh on May 31, 2011, 07:56:15 PM
Code: [Select]
#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;
}
Title: Re: C++ post your shitt
Post by: Blackllama on June 01, 2011, 01:57:02 AM
Code: [Select]
#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
Code: [Select]
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.
Code: [Select]
#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;
}

Title: Re: C++ post your shitt
Post by: Acecool on July 03, 2011, 11:43:06 PM
1800 lines on here? Meh... If anyone wants to buy some code for Ashen Empires to bypass the macro check, let me know :-)
Title: Re: C++ post your shitt
Post by: Burgers-13 on October 30, 2013, 04:24:36 AM
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
Title: Re: C++ post your shitt
Post by: Finniespin on October 30, 2013, 10:00:55 AM
:< I think C# is horrible already...

Here's aspx. (Some dutch content)
Nevermind stored it locally.

Posting soon!
OP SURELY DELIVERS...
Title: Re: C++ post your shitt
Post by: Christovski on October 30, 2013, 11:53:36 AM
Nice necro there Burgers :P
Title: Re: C++ post your shitt
Post by: Blackllama on October 30, 2013, 12:37:24 PM
Me two years ago is just eww. I don't need to see this shit.
Title: Re: C++ post your shitt
Post by: Burgers-13 on October 30, 2013, 02:21:00 PM
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  :-[
Title: Re: C++ post your shitt
Post by: Christovski on October 30, 2013, 02:23:01 PM
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
Title: Re: C++ post your shitt
Post by: Leninade on November 02, 2013, 04:22:58 PM
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.
SimplePortal 2.3.5 © 2008-2012, SimplePortal