Created
February 16, 2016 06:37
-
-
Save husnain-iqbal/ddbac2992dddd0c8bd97 to your computer and use it in GitHub Desktop.
import java.io.*; import java.util.*; import java.text.*; import java.math.*; import java.util.regex.*; public class Solution { public static void main(String[] args) { Scanner in = new Scanner(System.in); int t = in.nextInt(); for(int a0 = 0; a0 < t; a0++){ int n = in.nextInt(); int temp = n; int answer = 0; while(temp>0){ int digit = temp%10; …
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import java.io.*; | |
| import java.util.*; | |
| import java.text.*; | |
| import java.math.*; | |
| import java.util.regex.*; | |
| public class Solution { | |
| public static void main(String[] args) { | |
| Scanner in = new Scanner(System.in); | |
| int t = in.nextInt(); | |
| for(int a0 = 0; a0 < t; a0++){ | |
| int n = in.nextInt(); | |
| int temp = n; | |
| int answer = 0; | |
| while(temp>0){ | |
| int digit = temp%10; | |
| if(digit > 0 && n%digit == 0){ | |
| answer++ ; | |
| } | |
| temp /= 10; | |
| } | |
| System.out.println(answer); | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment