knugi

Untitled

Mar 25th, 2017
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. package pl.knugi;
  2.  
  3. public class AddForLength {
  4. public static void main(String args[]){
  5. int g = 1234;
  6. String a = ""+g;
  7. int result = 0;
  8. for(int i=0; i<a.length();i++){
  9. result+= (Integer.parseInt(a.substring(i, i+1)));
  10. }
  11. System.out.println("Wynik: "+result);
  12. }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment