1
Stylesheet Codes / Re: [Stylesheet] XBox 360 Elite
« on: July 01, 2009, 05:09:50 pm »
looks good sibyl
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
@echo off
title compiling
javac *.java
pause
correct me if i made a mistikewell what are the best programs for website making,graphics stuff like that!web design pro... try that just google it to download it
Well, here's rock paper scissors in C++. Made in like 5 mins.anyway we can do this without downloading?Code: [Select]/*Script in C++. Rock paper sicrrors!. Enjoy.*/
Can't compile? I'll upload the .exe. (C++ compiles to .exe)
#include <iostream>
#include <cstdlib>
#include <ctime>
using namespace std;
int main()
{
srand((unsigned)time(0));
int choice;
int againchoice;
int computerchoice = (rand()%2)+1;
cout <<"Type 0 for Rock, 1 for Paper and 2 for Scissors.\n";
cin >> choice;
if (choice == 0)
{
if (computerchoice == 0)
cout << "It has resulted in a Tie!\n\n";
else if (computerchoice == 1)
cout << "Paper has beaten Rock. You have lost!\n\n";
else if (computerchoice == 2)
cout << "Rock has beaten Scissors. You have won!\n\n";
}
if (choice == 1)
{
if (computerchoice == 0)
cout << "It has resulted in a Tie!\n\n";
else if (computerchoice == 1)
cout << "Paper has beaten Rock. You have won!\n\n";
else if (computerchoice == 2)
cout << "Scissors has beaten Paper. You have lost!\n\n";
}
if (choice == 2)
{
if (computerchoice == 0)
cout << "It has resulted in a Tie!\n\n";
else if (computerchoice == 1)
cout << "Scissors has beaten Paper. You have won\n\n";
else if (computerchoice == 2)
cout << "Rock has beaten Scissors. You have lost!\n\n";
}
cout << "Would you like to play again? 1 for Yes and 2 for No.\n";
cin >> againchoice;
if (againchoice == 1)
{
system("cls");
return main();
}
else if (againchoice == 2)
{
system("EXIT");
}
}
http://www.megaupload.com/?d=5ZX82RC6
Yes, it's clean. Scan yourself. I'm not uploading scan results to proove it is clean.
ok ty for pointing it out... no wonder it isnt mentioned on w3schoolswell im not gonna argue with a mod...
BBCode is like a...translation of HTML. In a sense I guess it's a language...but...
Basically your forum takes BBCode and turns it into HTML...the BBCode is never seen by a browser(like Firefox or IE).
BBCode is never used to actually make up a webpage.