Answers for "c++ loop"

C++
42

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
Posted by: Guest on December-31-2019
3

how to create a for loop in c++

#include <iostream>
using namespace std;

int main()
{
	for (int i = 0; i < 20; i++)
    {
		cout << i << endl;
    }
  	//prints the number (i)
}
Posted by: Guest on August-31-2021
8

for loops in cpp

for(int i=0; i<=limit; i++)
{
	//statement
}
Posted by: Guest on April-26-2020
5

for loop c++

#include <iostream>

using namespace std;

int main(){
 
  int i; //initialize integer
  //i starts at 0 and stops at 4, as 5 is not < 5
  for (i = 0; i < 5; i++){ //i++ means add 1 to i each iteration
    cout << "number " + i << endl; //print 5 times
  }
  return 0;
}
//output:
/*
number 0
number 1
number 2
number 3
number 4
*/
Posted by: Guest on March-28-2020
0

c++ loop

// initialization of variables

#include <iostream>
using namespace std;

int main ()
{
  int a=5;               // initial value: 5
  int b(3);              // initial value: 3
  int c{2};              // initial value: 2
  int result;            // initial value undetermined

  a = a + b;
  result = a - c;
  cout << result;

  return 0;
}
Posted by: Guest on June-05-2021
0

c++ loop

int x = 0;
Posted by: Guest on September-11-2021

Browse Popular Code Answers by Language