Skip to content

Instantly share code, notes, and snippets.

@husnain-iqbal
Created February 16, 2016 06:37
Show Gist options
  • Select an option

  • Save husnain-iqbal/ddbac2992dddd0c8bd97 to your computer and use it in GitHub Desktop.

Select an option

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; …
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