ForumsProgramming ForumTesting [code][/code]

11 6546
Ferret
offline
Ferret
9,323 posts
Bard

Just testing...

~ bottles { 
  latlh 1 rap'a' "" tam 
    { woD "s" } ghobe'chugh 
  " bottle" tam tlheghrar tam woD 
  " of beer" tlheghrar 
} pong
  • 11 Replies
Ferret
offline
Ferret
9,323 posts
Bard

Some tags symbols won't work for now, like greater than and less than.

weirdlike
offline
weirdlike
1,299 posts
Prince

Aww yeah. Get down on some code!

if(argumentA==argumentB)
{
     statementC = true;
}
Ferret
offline
Ferret
9,323 posts
Bard

@weirdlike Looks like right now there is a bug with a space at the top of the code, but if you stack the first line of code next to your first markup of "code" it can kill it. Example...

Test
weirdlike
offline
weirdlike
1,299 posts
Prince

trying out some other things...

EDIT:---------------- divider :P

package  
{
	import flash.display.*;
	import flash.events.*;
	
	public class main extends MovieClip 
	{
		function main():void
		{
			secondClass(stage);
			//call to class and pass the stage as an argument
		}
	}
}
weirdlike
offline
weirdlike
1,299 posts
Prince

more fun with code :P

EDIT:---------------- divider :P

EDIT:---------------- divider :P

if(number  numberMax)
{
	test2()
}
Ferret
offline
Ferret
9,323 posts
Bard

Testing < and > Test.
R1a2z3e4
offline
R1a2z3e4
116 posts
Shepherd

[code]import java.io.*;
class Tables
{
public static void main(String s[])throws IOException
{
int x,y;
InputStreamReader reader = new InputStreamReader (System.in);
BufferedReader input = new BufferedReader (reader);
System.out.println("Enter the number whose table you want to see...");
String xy = input.readLine();
x = Integer.parseInt(xy);
System.out.println("Here is your table :-");
for (y=x; y

R1a2z3e4
offline
R1a2z3e4
116 posts
Shepherd

Code is not working???
Testing this :-
Testing = 6

And

Testing = Heads

DICE RESULTS
6 = Testing
COIN RESULTS
Testing
Heads
R1a2z3e4
offline
R1a2z3e4
116 posts
Shepherd

Testing :-

<style>
#content {margin-top: 8%; margin-left: 8%; margin-right: 8%; margin-bottom: 0%; background-color: white;}
</style>
R1a2z3e4
offline
R1a2z3e4
116 posts
Shepherd

It works!
Java code for tables :-

import java.io.*;
class Tables
{
    public static void main(String s[])throws IOException
    {
        int x,y;
        InputStreamReader reader = new InputStreamReader (System.in);
        BufferedReader input = new BufferedReader (reader);
        System.out.println("Enter the number whose table you want to see...");
        String xy = input.readLine();
        x = Integer.parseInt(xy);
        System.out.println("Here is your table :-");
        for (y=x;y<=x*10;y=y+x)
        {
            System.out.println(+y);
        }
    }
}
R1a2z3e4
offline
R1a2z3e4
116 posts
Shepherd

Whoa! Smilies???
I have not putted smilies in real code...

Showing 1-11 of 11