Aryan PrajapatKnowledge Contributor
Write a java program to check if any number given as input is the sum of 2 prime numbers.
Write a java program to check if any number given as input is the sum of 2 prime numbers.
// C program to check if a prime number
// can be expressed as sum of
// two Prime Numbers
#include
#include
if (isPossible(n)) printf("%s", "Yes"); else printf("%s", "No");
return 0; }