/* * Author: Amit Dutta (amitdutta4255@gmail.com) | Date: 12 Dec 2025 * Repo: https://github.com/notamitgamer/bsc * License: MIT */ /* Write a C program to count how many numbers between 100 and 999 have all distinct digits (e.g., 123, 709, 981). */ /* Author: Amit Dutta, Date: 21-11-2025 */ // This code has not been compiled. // If you find any issues, please create a new issue on GitHub regarding them. // Go to this link to create a new issue: https://github.com/notamitgamer/bsc/issues #include int main() { int i, count = 0, n1, n2, n3; printf("Distinct numbers between 100 and 999: "); for (i = 100; i <= 999; i++) { n1 = i / 100; n2 = (i % 100) / 10; n3 = i % 10; if (n1 != n2 && n2 != n3 && n1 != n3) { printf("%d ", i); count++; } } printf("\nCount: %d\n", count); return 0; }