
Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
Material Type: Assignment; Professor: Tanner; Class: Introduction-Computer Science; Subject: Computer Science; University: West Virginia University; Term: Unknown 1989;
Typology: Assignments
1 / 1
This page cannot be seen from the preview
Don't miss anything!

CS110 Homework Set 5 Solution P303 #14, #16, #18, # 10 points total
#14 2 points Answer: 0 10 30 60
#16 3 points a. iii 26
b. iv. 5
c. i 0
#18 3 points
public class Assignment { public static void main (String[] args) { int num = 0; for (int i = 0; i< 100; i ++) { if (i%3 == 0) num += i; } System.out.println(num); } }
#20 2 points Answer: 11 19 30 49