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 ... 255 256 [257] 258 259 ... 276
3841
Humour and Jokes / Re: 9001 signs you're addicted to calcs and Omni
« on: December 10, 2010, 06:01:38 pm »
1065: You optimize(or unoptimize) your program so it have a size of 9001.

3842
Humour and Jokes / Re: Ashbad Newsletter 1
« on: December 10, 2010, 05:59:17 pm »
roflmao

3843
Other Calculators / Re: Super Mario Game
« on: December 10, 2010, 05:56:36 pm »
if you're talking about the Sam Heald one, I made the levels myself and it's really evil.(Imma post it later) It's only 2 lvls, but my friend took 1 hr+ to beat it  :w00t:

3844
yeongJIN_COOL's random calc generator
have fun
I got...
Spoiler For Spoiler:
TI-MICROWAVE

Code: [Select]
import java.util.*;
public class randomcalc
{
   public static void main(String args[])
   {
       Random generator = new Random();
       int r = generator.nextInt(20);
       System.out.println("yeongJIN_COOL's random calc gen");
       System.out.println("You get...");//WHAT YOU'RE GONNA GET?
       switch(r)
       {
          case 0: System.out.println("TI-81");break;
          case 1: System.out.println("TI-83+");break;
          case 2: System.out.println("TI-84+");break;
          case 3: System.out.println("TI-83+ SE");break;
          case 4: System.out.println("TI-84+ SE");break;
          case 5: System.out.println("TI-86");break;
          case 6: System.out.println("TI-89");break;
          case 7: System.out.println("TI-89 Titanium");break;
          case 8: System.out.println("TI-92");break;
          case 9: System.out.println("Voyage 200");break;
          case 10: System.out.println("TI-32 stuff");break;
          case 11: System.out.println("f(x)-9750g");break;
          case 12: System.out.println("cf(x)-9750g");break;//AT LEAST, IT HAS COLOR
          case 13: System.out.println("TI-MICROWAVE");break;//ROFL
          case 14: System.out.println("CASIO PRIZM");break;
          case 15: System.out.println("TI-nSPIRE with Clickpad");break;
          case 16: System.out.println("TI-nSPIRE with Touchpad");break;
          case 17: System.out.println("TI-nSPIRE CAS");break;
          case 18: System.out.println("Wabbitemu");break;
          case 19: System.out.println("Nothing");break;//TOO BAD FOR YOU
       }
}
}


3845
Gaming Discussion / Re: Professionalism in Calculator Game Playing
« on: December 10, 2010, 10:47:04 am »
TVF = The Verdante Forest
EDIT: Beat my record by beating the final boss at level less than 27

3846
Gaming Discussion / Re: Professionalism in Calculator Game Playing
« on: December 10, 2010, 10:42:45 am »
I have played TVF more than 10 times and I'm writing a walkthrough. Will that count?

3847
Computer Programming / Re: java piglatin converter?
« on: December 09, 2010, 10:14:01 pm »
woot :w00t:
Spoiler For Spoiler:
you butterfliesing butterflies

3848
Other Calculators / Re: Where did you get your calcs from?
« on: December 09, 2010, 09:48:50 pm »
it was new(somehow)

3849
I made it for my homework. You have to compile it first.
You type the sentence and it converts the sentence into piglatin!
Code: [Select]

import java.util.*;
import java.lang.*;
public class Prog508a
{
    public static Scanner k=new Scanner(System.in);
    public static int yesorno=1;
    public static String YN="";
    public static int yncheck(String YesOrNo)
    {
        if(YN.equals("Yes"))
         yesorno=1;
        else if(YN.equals("No"))
         yesorno=0;
       
        else if( !(YN.equals("Yes") || YN.equals("No")) && (YN.equalsIgnoreCase("yes") || YN.equalsIgnoreCase("no")))
        {
            System.out.print("Capitalization is important Yes or No? ");
            YN=k.nextLine();
            yncheck(YN);
        }
        else
        {System.out.print("You must answer either Yes or No? ");
            YN=k.nextLine();
            yncheck(YN);
        }
        return yesorno;
    }
      public static void main(String args[])
    {       
        String str="",str2="",str3="";
        while(yesorno==1){
        System.out.println();
        System.out.print("Enter a sentence: ");
        str=k.nextLine();
        String[] sarray = str.split(" ");
        int len = sarray.length;
        for(int i=0;i<len;i++)
        {
            char[] word = sarray[i].toCharArray();
            char firstletter = word[0];
            int len3=word.length;
            int len4=len3-1;
            if(firstletter!='a' && firstletter!='e' && firstletter!='i' && firstletter!='o' && firstletter!='u' && firstletter!='A' && firstletter!='E' && firstletter!='I' && firstletter!='O' && firstletter!='U')
            {
                for(int j=0;j<=len4-1;j++)
                {
                    word[j]=word[j+1];
                }
                word[len3-1]=firstletter;
            }           
            for(int l=0;l<=len3-1;l++)
            {
                str2=str2+word[l];
            }
            str3=str3+str2+" ";
            str2="";
        }       
        str3=str3.replace(" ","ay ");
        System.out.println(str3);
        str3="";
        System.out.print("Do you wish to convert another sentence? (Yes/No) ");
        YN=k.nextLine();
        yncheck(YN);   
       }
    }
}

 */
Optimizing comments thnx

3850
Other Calculators / Re: Where did you get your calcs from?
« on: December 09, 2010, 08:11:00 pm »
ti-84+se = friend

n-Spire=pawn shop O.O

3851
News / Re: Nostromo updates & Z80 POTY survey opening
« on: December 09, 2010, 08:05:19 pm »
someone should make a 3D zelda game with this? :w00t:

3852
Miscellaneous / Re: Omnimaga/TI-Community Forum Etiquette
« on: December 08, 2010, 10:43:59 pm »
how exactly does alt code works?

3853
TI Z80 / Re: PapiJump
« on: December 07, 2010, 06:24:24 pm »
first time of seeing this topic, but woot Papijump  :w00t:

3854
Art / Re: 64xXX Humanoid Sprite
« on: December 07, 2010, 05:55:29 pm »
... I think mine fails

3855
Humour and Jokes / Re: Will Netham45 kill us?
« on: December 07, 2010, 05:43:07 pm »
*Yeong keep spam his aposiopesis for no rea

Pages: 1 ... 255 256 [257] 258 259 ... 276