Join 2,358+ Players and socialize together

Join the Community Today

Come hang out with us on the Minecraft Addicts Forums — it's the perfect place to chat, trade cool stuff, and connect with awesome builders just like you! Let's plan epic builds, create amazing worlds together, and then show off your masterpieces to everyone! Plus, we’re all about having fun, so feel free to talk about anything under the sun—games, hobbies, favorite snacks, you name it! Can't wait for you to join and share all the Minecraft magic!

Forum Game: Control/Command V

Status
Not open for further replies.
class ForDemo {
public static void main(String[] args){
for(int i=1; i<11; i++){
System.out.println("Count is: " + i);
}
}
}
 
past

Code:
                   .--.--.                                                         
                  .' .-.-. `.                                                       
                 /  /    :   \                          
                :  /     ;    ;                                                     
                ; :--.  -:    :                                                     
               :  ; ~   ~ \    ;           
               ; ::   .    ;.  :             
               ; : \  =   /  \  \                                  
               :  \ :.__.;    ;  ;                                                  
                )  ;;   ;:   /   ;            
             :-'  //:  /  \_:_  /                 
             .`--'"  ,--""    "^-.                    
            /                     ;                                                 
           :  /                   :                             
           : /J___       _         ;                                                
          .-"  ---; /j"-.)\    ;   :              
         /     ::j :`.`-   ;   :    ;                                               
        : '-.--""  :`.`    :/ : ;   :                                               
         \ :`. _.'  `."-.   `.; ;    ;                                     
          \  :        """`.   "-:_   :                   
           \ :    :        `.        :                                    
            `.\   ;    \     j-.     ;            
              `;  :     ;    ;  "-._/              
               :        :    ;                      
                ;            :                                                      
                :  )    :     ;                   
                :       ;     :                                                     
                ;          __.'\                                                    
               : "-._..--""     \                                                   
               ;        .-"""-.  ;          
              / "-.   .'       `.:              
            .'     `,'           ;                                                  
          .'       :            :                                                   
        .'         ;            ;                                                   
      .'          :            /                                                    
    .'            ;           /                                                     
  .'             :           (                                                      
 /            .-";          / \                                                     
:          .-"  :          /  \;                                                    
; :      .'     ;         /-;J/                                                     
:  \   .'  __..:         /             __                                           
 `.___.--""    ;       .' ___         /  \                                          
               :       /-""   """-----'-,  "-.           
              ;      (                      .\                         
              : :_           ___...---..._   -:                                     
               `.___...---"""             `.Ll'

some times I wonder what I do with my time. grabing ascii pron for fun and pasting them to friends emails.
 
I visited my doctor last week, and he told me I had to stop masturbating. I asked him why, surely it’s not dangerous. He said it was distracting him.

(Copied from Notch's blog)
 
import java.util.*;
public class I AM SO BORED SO I MADE THIS :) {

/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub


Scanner input=new Scanner(System.in);

Random R=new Random();
int num;
int in;



System.out.println("This is a simple number game");
num=R.nextInt(100)+1;
for(int x=0; x<10; x++)
{
System.out.println("Enter a number");
in=input.nextInt();
if(in==num)
{
System.out.println("You still have " +(10-x)+ " lives left.");
System.out.println("You won!~");
break;
}
if(in>num)
{
System.out.println("You still have " +(10-x)+ " lives left.");
System.out.println("Lower");
}
if(in<num)
{
System.out.println("You still have " +(10-x)+ " lives left.");
System.out.println("Higher");
}
if(x==9)
{
System.out.println("You loose!");
break;
}

}

}

}
 
composite.fsh
composite.vsh
final.fsh
final.vsh
gbuffers_basic.fsh
gbuffers_basic.vsh
gbuffers_hand.fsh
gbuffers_hand.vsh
gbuffers_terrain.fsh
gbuffers_terrain.vsh
gbuffers_textured_lit.fsh
gbuffers_textured_lit.vsh
gbuffers_textured.fsh
gbuffers_textured.vsh
gbuffers_weather.fsh
gbuffers_weather.vsh


(GLSL Shader files)
 
Status
Not open for further replies.
Back
Top