#include <iostream> int main() { int contador = 0; for (int i = 0; i < 100000; i++) { contador++; } std::cout << "Iteraciones =" << contador << std::endl; return 0; }
To embed this project on your website, copy the following code and paste it into your website's HTML: