Intro to Algebra
Standard form notes today. 5.6 Notes
Homework #10 for tomorrow.
Computer Science 2
Practice for tomorrow's test. Congrats to Bill and Arin! Their winning code is below (the answer to the last problem):
public class onehundredcounter {
public static void main(String[] args)
{
int sum=0, num=0;
while (num<=100)
{
sum=sum+num;
num++;
}
System.out.println(sum);
}
}
No comments:
Post a Comment