Consider the following program. What is the output?#include…
Questions
Cоnsider the fоllоwing progrаm. Whаt is the output?#include int mаin(){ int x = 0; for(int i = 2; i > 0; i += 2) { if((i%5) == 0) break; if((i%3) == 0) continue; x += i; } std::cout