Skip to content

Instantly share code, notes, and snippets.

@mertyildiran
Created December 22, 2013 13:19
Show Gist options
  • Save mertyildiran/8082527 to your computer and use it in GitHub Desktop.
Save mertyildiran/8082527 to your computer and use it in GitHub Desktop.
String içerisindeki sayıları toplama
girdi = "on3d1oku5zm7ayis3"
sayilar = "0123456789"
toplam = 0
i=0
while i < girdi.length
j=0
while j < sayilar.length
if girdi[i] == sayilar[j]
toplam += girdi[i].to_i
end
j += 1
end
i += 1
end
puts toplam
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment