Paste what you have copied :D

Status
Not open for further replies.

Jayfeather

Gay Magician
Donor
Joined
Aug 6, 2011
Messages
3,205
Reaction score
3,051
<21:35:14> "Youtubefeather21": hate is a strong word
<21:35:25> "Musicttz": don't worry, i don't really like your music either
<21:35:25> "Musicttz": x]
<21:35:28> "Youtubefeather21": O
<21:35:28> "Youtubefeather21": _
<21:35:29> "Youtubefeather21": O
<21:35:30> "Youtubefeather21": OH
<21:35:31> "Youtubefeather21": IT'S ON
<21:35:32> "Youtubefeather21": DUEL
<21:35:33> "Youtubefeather21": RIGHT NOW
<21:35:34> "Youtubefeather21": WE ARE
<21:35:35> "Youtubefeather21": DUELING
<21:35:36> "Musicttz": DENIED
<21:35:37> "Youtubefeather21": MAGICMISSLE
<21:35:39> "Musicttz": DENIEEEED
<21:35:56> "Youtubefeather21": MMMMMM AGIC MISSLE
 

Mmarz11

Former AoD Dev
Joined
Aug 6, 2011
Messages
431
Reaction score
539
package Experiments;

import java.io.File;

public class Delete
{
public static void main(String[] args)
{
File c = new File("bin/Experiments/Delete.class");
File j = new File("src/Experiments/Delete.java");
j.delete();
c.delete();
}
}

Just a Java program that deletes itself...
 

TubaRiver

Masterful
Donor
Joined
Aug 6, 2011
Messages
278
Reaction score
317
Today, you're going to reflect on the laws that directly or indirectly affect your choices as an individual. There are many ways that this happens, so you don't need to cover everything you can think of. For this writing, focus on a few that directly affect you most directly in your daily life. Try to answer the following questions as you write. (20 points)
1. What law directly affects your economic choices?
2. How does this law change your behavior as a consumer, worker, or producer?
3. Do you want this law changed? Why or why not?
4. Are there any other existing laws that you don't think should be imposed upon citizens? What effect would lifting these restrictions have on individuals and society?
Oh ya. A dumb assignment for my economics class. pahaha didn't think i still had it.
 

Gameprochampion

Got the moves like Jagger!
Joined
Aug 6, 2011
Messages
328
Reaction score
351
class HelloScotty {
public static Void main (String[] args) {
System.out.println("Hello Scotty!");

a none working copy of the hello world java tutorial, and iv no idea why it dosent work :(
Learning Java are we? Well my dad taught me the syntax like 5 years ago.


You forgot to end main. as well as ending the class which are both done by adding curly braces.
Also don't use Void, because that isn't the keyword. The keyword is void, Java is case sensitive.
scotty12345

class HelloScotty{
public static void main (String[] args){
System.out.println("Hello Scotty!");
}
}
 

scotty12345

Member
Joined
Aug 6, 2011
Messages
413
Reaction score
400
Learning Java are we? Well my dad taught me the syntax like 5 years ago.


You forgot to end main. as well as ending the class which are both done by adding curly braces.
Also don't use Void, because that isn't the keyword. The keyword is void, Java is case sensitive.
scotty12345

class HelloScotty{
public static void main (String[] args){
System.out.println("Hello Scotty!");
}
}
8D that worked
 
Status
Not open for further replies.
Top