“Для петли в CPP” Ответ

для c

for (int i = startPoint; i<index ; i++ // or i--){
	//Do something...
}
Good Grebe

для петли c

for (let i=0; i<10; i++) {
	console.log("hello") }
   
Determined Dolphin

для петли c

for(int i=0;i< /*condition*/ ;i++)
{
	//your code here
}
Different Dogfish

Для петли в c

for (<exp_1>; <exp_2>; <exp_3>){
    // loop body
}
Fair Flamingo

Для петли в CPP

//limit can be any number
//you can use any comparison operator

for(int iteration = 0; iteration < limit_number; iteration++)
{
	//action in for loop
}
RohBot

для заявления в C

#include iostream
using namespace std;

int main{
  for(int i=0; i<100; i++)
  {
    cout<<"Hello World";
  }
  
  return 0;
}
Iron Man

Ответы похожие на “Для петли в CPP”

Вопросы похожие на “Для петли в CPP”

Больше похожих ответов на “Для петли в CPP” по C++

Смотреть популярные ответы по языку

Смотреть другие языки программирования