mirror of
https://hub.njuu.cf/TheAlgorithms/C-Plus-Plus.git
synced 2023-10-11 13:05:55 +08:00
Resolve errors
This commit is contained in:
parent
30ee762347
commit
583264da0f
@ -50,6 +50,7 @@ int main() {
|
|||||||
if (n == 0) {
|
if (n == 0) {
|
||||||
std::cout << "All non-zero numbers are divisors of 0 !" << std::endl;
|
std::cout << "All non-zero numbers are divisors of 0 !" << std::endl;
|
||||||
} else {
|
} else {
|
||||||
std::cout << "Number of positive divisors is : " << number_of_positive_divisors(n) << std::endl;
|
std::cout << "Number of positive divisors is : ";
|
||||||
|
std::cout << number_of_positive_divisors(n) << std::endl;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user