Show Posts

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.


Messages - Yeong

Pages: 1 ... 233 234 [235] 236 237 ... 276
3511
Humour and Jokes / Re: 9001 signs you're addicted to calcs and Omni
« on: March 25, 2011, 06:23:50 pm »
Do I feel some of the stuffs repeating?  ???

3512
Gaming Discussion / Re: Kodu Game Lab
« on: March 25, 2011, 06:16:55 pm »
I think this is mainly designed for shoot'em up games or something.

3513
Well, that's what supposed to look like.  :)
BTW, don't try incredibly huge number or it will go overflow XD

3514
Gaming Discussion / Re: Kodu Game Lab
« on: March 25, 2011, 05:57:12 pm »
@DJ: No. You "paint" the tile.

@Scout: It doesn't generate .exe file. You upload them here:

3515
Well, this is the java code that lets u convert decimal to binary ~ 36-base number.
Code: [Select]
import java.util.*;
public class Convert
{
    public static String convertbase(int n, int base) {
       // special case
       if (n == 0) return "0";

       String digits = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ";
       String s = "";
       while (n > 0) {
          int d = n % base;
          s = digits.charAt(d) + s;
          n = n / base;
       }
       return s;
    }
    public static void main(String[] args)
    {
        Scanner keyboard = new Scanner(System.in);
        System.out.print("Enter the number base 10 to convert:  ");
        int original = keyboard.nextInt();
        System.out.print("Enter the new base: ");
        int base = keyboard.nextInt();
        String answer = convertbase(original,base);
        System.out.println("The number "+original+"[base 10] = "+answer+"[base "+base+"]");
    }
}

3516
Gaming Discussion / Kodu Game Lab
« on: March 25, 2011, 05:47:44 pm »
Well, it looks like Microsoft made their own game-making utility.
Kodu game lab is really easy to use, and it's designed to make games.
Even though the features are pretty limited right now, but take a look at the simple game that I made.

3517
Other Calculators / Re: Your calculator collection
« on: March 25, 2011, 05:35:59 pm »
I hav:
2 Ti-84+ SE (One I/O port doesnt work D: )
1 Ti-nSpire (I used to have a older model too, but it's gone D: )

3518
Miscellaneous / Re: What is your avatar?
« on: March 25, 2011, 07:10:25 am »
I am ashamed to say so but Deep Thought has just Rickroll'D me...
I can't find the rickroll ???
I haven't check it yet, but if it exists, i think it's his password thingy(So obvious)

3519
Axe / Re: The Ultimate Guide to Handling Axe
« on: March 25, 2011, 07:06:20 am »
I can only view the first page...O_o

3520
Axe / Re: Data Transmission question
« on: March 22, 2011, 07:34:30 pm »
Is calc-to-calc( you know, getCalc stuff) serial transfer?

3521
Axe / Data Transmission question
« on: March 22, 2011, 07:29:36 pm »
I just don't get anything related to it. D:
How does that exactly work?

3522
Axe / Axe music question
« on: March 22, 2011, 07:36:51 am »
Does Axe can only play mono sound, or does it support stereo if you program it right?

3523
Gaming Discussion / Re: Awesome games
« on: March 22, 2011, 07:22:33 am »
I would include Metal Slug even though many of the ppl haven't played it yet.
It's an Shoot'em up acrade like contra, but better. (Choosing character, interesting storyline, comicness...)
Especially, Metal Slug 3, just because it's freaking long.

3524
News / Re: Please take fights off of the forums
« on: March 21, 2011, 06:05:36 pm »
Omnimaga should have its own moto: Do not fight, just make games.  ;)

3525
Miscellaneous / Re: Post your desktop
« on: March 21, 2011, 07:25:08 am »
yay I see BlueJ ! XD

Pages: 1 ... 233 234 [235] 236 237 ... 276