Members Login
Username 
 
Password 
    Remember Me  
Post Info TOPIC: Important Announcement


Wario

Status: Offline
Posts: 2799
Date:
RE: Important Announcement


Knowing Joe, something really dumb.


 



__________________


Wario

Status: Offline
Posts: 1926
Date:

probably, or something rather altruistic


"how long have you been waiting to say that in a conversation"


what do you mean? I say 'or' all the time.


"not that, I meant.....nevermind"



__________________


Wario

Status: Offline
Posts: 2799
Date:

Is altruistic actually a real word?

__________________


Wario

Status: Offline
Posts: 1926
Date:

yeah (i think I already said this) its one of my vocab words, it means being generous or something.

__________________


Wario

Status: Offline
Posts: 2799
Date:

How was Joe being generous??

__________________


Wario

Status: Offline
Posts: 1926
Date:

I dont know, but I like saying fancy words-exclamation point-

import javax.swing.*;
import java.util.*;
public class PS3
{
//question #1
static public double tip( double billTotal)
{
return (billTotal * 0.18);
}

//question #2
static public double hyp( double legOne, double legTwo)
{
double hypo = Math.sqrt((Math.pow(legOne,2)) + Math.pow(legTwo,2));
return (hypo);


}

//question #3
static public double max( double num1, double num2)
{
if (num1 >= num2)

return(num1);
else
return(num2);
}

//question #4
static public void factors(int num)
{
int i = num;

while( i >= 1)
{
if(num % i == 0)
{
System.out.println(i + " ");
}
i--;
}

}
//question #5
static public void numbers()
{
int i = 1;
int subtotal = i;

while( i <= 25)
{
System.out.println(i);
i++;
if(subtotal % i == 0)
{
System.out.println(i + " ");
\
}





}

}


__________________


Wario

Status: Offline
Posts: 2799
Date:

What is all that babble?

__________________


Safety Mario

Status: Offline
Posts: 253
Date:

You input your bill total and then it calculates the tax and adds it all up for you.

__________________
AAAAAAAAAAAND STOMP!!!!!!!!


Wario

Status: Offline
Posts: 2799
Date:

............Alright. Fair enough. By in that case, WHY IS MIKE BABBLING IT?????

__________________


Wario

Status: Offline
Posts: 1926
Date:

I felt like sharing the awesome-ness of computer science

__________________
«First  <  114 15 16 17 18  >  Last»  | Page of 18  sorted by
 
Quick Reply

Please log in to post quick replies.

Tweet this page Post to Digg Post to Del.icio.us


Create your own FREE Forum
Report Abuse
Powered by ActiveBoard