Programming Resources
For Fun and Learning
Charles Cusack
Computer Science
Hope College
main

Python
C++

JAVA


PHP
SQL
Alice

RoundIt


RoundIt.java

package stuffFor255;

// For grading AIDMA 3.7c.
public class RoundIt {

  public int roundDivision(int n, int m) {
     // Implement your algorithm here and have it
     // return the correct answer instead of -1.
     return -1;
  }
}