Answers for "loop in c plus"

C++
1

how to make loop in c++

#include <iostream>
using namespace std;
int main()
{
  for (int i=0;i<5;i++)
  cout << i <<endl;
}
Posted by: Guest on December-15-2021
0

c++ loop

In [33]: x[0:2,0:2]
Out[33]: 
array([[0, 1],
       [4, 5]])

In [34]: x[2:,2:]
Out[34]: 
array([[10, 11],
       [14, 15]])
Posted by: Guest on January-13-2022

Browse Popular Code Answers by Language