// Example program
#include <iostream>
#include <string>
#include <math.h>
int main()
{
int i;
double d;
i = 100;
while (i < 1000) {
d = sqrt(i * 14);
if (d == (long long)d) {
std::cout << i << std::endl;
}
i++;
Объяснение:
http://cpp.sh/47bmd3
// Example program
#include <iostream>
#include <string>
#include <math.h>
int main()
{
int i;
double d;
i = 100;
while (i < 1000) {
d = sqrt(i * 14);
if (d == (long long)d) {
std::cout << i << std::endl;
}
i++;
}
}
Объяснение:
http://cpp.sh/47bmd3