for loops in c++ code example
Example 1: c++ for loop
//'i' can be any number
//Can be any comparison operater
//can be any number compared
//can be any mathmatic operater
for (int i = 0; i<100; i++){
//Do thing
}
//more info on operaters
//https://www.w3schools.com/cpp/cpp_operators.asp
Example 2: for loops in cpp
for(int i=0; i<=limit; i++)
{
//statement
}
Example 3: create loop c++
// There are 2 loops in ++ :
while(1==1){ }
// | | |
// | What happens while condition is true
// |
// the condition
//for loop
for (int i; i < 10; i++){ }
// |___| |___| |_| |__|
// | | | |
// | | | what happens when conditons is true
// | | what happens each time loop is reapeted
// | The condition in wich the loop is true
// a variable declaratoin
Example 4: c++ for loop
#include <iostream>
using namespace std;
int main()
{
int abc = 10;
for (int /*what ever letter you want (here I used i)*/i = 0; i < /*can be any comparison operater(here i used <)*/abc/*any variable to compare*/; i++/*what should happen when the code inside the for loop is executed*/)
{
/*here do some thing that you want to repet*/
cout << i << "\n";/*this will print 1, 2, 3, 4... until 10*/
}
}
Example 5: for loop in c++
for (int i = 0; i < 10; i++)
{
cout << i << endl;
}
Example 6: for loop in cpp
//limit can be any number
//you can use any comparison operator
for(int iteration = 0; iteration < limit_number; iteration++)
{
//action in for loop
}