Advertisement
Flaron

Udemy_16.FirstAndLastDigit

Sep 14th, 2019
191
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. package lista.Alapok;
  2.  
  3. public class Main {
  4.  
  5. public static int sumFirstAndLastDigit (int number) {
  6. int first=0, last;
  7.  
  8. if(number<0) return -1;
  9.  
  10. else {
  11. last=number%10;
  12.  
  13. while(number>0) {
  14. first=number%10;
  15. number=number/10;
  16. }
  17. }
  18. return first+last;
  19. }
  20.  
  21. public static void main(String[] args) {
  22. System.out.println(sumFirstAndLastDigit(102));
  23. }
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement