#include <bits/stdc++.h> using namespace std ; int Divisors ( int n ) { int count = 0 ; for ( int i = 1 ; i * i <= n; i ++ ) { if (i * i == n) { count ++ ; } else if (n % i == 0 ) { count = count + 2 ; } } return count; } //driver program int main () { int ...
A corner of Computer Science & Engineering related things
Home
4th Semester
Algorithm Design Computer Architecture Database Management System Data Communications Economics5th Semester
Theory of Computation Microprocessor and Assembly Language Engineering Mathematics Sociology Technical Writing and Communications
.