Advertisement
Guest User

Untitled

a guest
May 24th, 2016
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. public class Sum{
  2. public int GetSum(int a, int b){
  3. //Good luck!
  4. int sum = 0;
  5. if (a==b){
  6. return a;
  7. }// close if
  8. else{
  9. for (int i=b; i<=a;i++){
  10. sum+=i;
  11. }// close else
  12. } // close for loop
  13. return sum;
  14. } // closee GetSum
  15. } // close class
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement