class youtube3{
public static void main(String args[]){
double tuna;
tuna = 5.28;
System.out.print("tuna");
}
}
When I run it, it just shows "tuna" not 5.28, can someone tell me what I did wrong ?
lmfao.
you told it to print out the word tuna, not the string tuna.
your an idiot.
Quote from: Allie on October 05, 2011, 11:37:46 PM
lmfao.
you told it to print out the word tuna, not the string tuna.
your an idiot.
fku
kenny lmfao'd at you too.
桜 says:
http://boutcheetah.zylongaming.com/index.php/topic,17269 (http://boutcheetah.zylongaming.com/index.php/topic,17269)
Kenny says:
lmfao
Quote from: Allie on October 05, 2011, 11:43:52 PM
kenny lmfao'd at you too.
桜 says:
http://boutcheetah.zylongaming.com/index.php/topic,17269 (http://boutcheetah.zylongaming.com/index.php/topic,17269)
Kenny says:
lmfao
-.-
Quote
fku
Quote from: asmit10 on October 05, 2011, 11:34:15 PM
class youtube3
{
public static void main(String args[])
{
double tuna = 5.28;
System.out.print(tuna.toString());
}
}
When I run it, it just shows "tuna" not 5.28, can someone tell me what I did wrong ?
Quote from: Santa on October 06, 2011, 12:10:10 AM
Quote from: asmit10 on October 05, 2011, 11:34:15 PM
class youtube3
{
public static void main(String args[])
{
double tuna = 5.28;
System.out.print(tuna.toString());
}
}
When I run it, it just shows "tuna" not 5.28, can someone tell me what I did wrong ?
Already figured it out, before allie posted :/ I just had to remove ""