Search
 
SCRIPT & CODE EXAMPLE
 

CPP

c++ array loop

#include <iostream>
using namespace std;

int main() {

  int i, n;
  float arr[100];

  cout << "Enter total number of elements(1 to 100): ";
  cin >> n;
  cout << endl;

  // Store number entered by the user
  for(i = 0; i < n; ++i) {
    cout << "Enter Number " << i + 1 << " : ";
    cin >> arr[i];
  }

  // Loop to store largest number to arr[0]
  for(i = 1;i < n; ++i) {

    // Change < to > if you want to find the smallest element
    if(arr[0] < arr[i])
      arr[0] = arr[i];
  }

  cout << endl << "Largest element = " << arr[0];

  return 0;
}
Comment

array and for loop in c++

//inserting array elements in cpp
#include<iostream>
using namespace std;
int main()
{
  int arr[100];//you can give any data type and any array size you want
  for(int i=0;i<100;i++)
  {
    cin>>arr[i];
  }
  return 0;
}
Comment

for loop with array c++

int v[] = {1,2,3,4,5};
for (int n : v)
  cout << n << endl;
//make sure to compile with -std=c++11
Comment

C++, for-loop over an array array

/*sizeof(array_scores) is a pointer to array_scores[], 
and has to be divided by each first-object[0]*/
for(int a = 0; a < sizeof(array_scores)/sizeof(array_scores[0]); a = a + 1 ){
	cout << "for loop, a = " << array_scores[a] << " at position " << a << "
";
}
//https://stackoverflow.com/questions/20234898/correct-way-of-looping-through-c-arrays
Comment

C++ Arrays and Loops

string cars[4] = {"Volvo", "BMW", "Ford", "Mazda"};
for (int i = 0; i < 4; i++) {
  cout << cars[i] << "
";
}
Comment

c++ loop array

2
1
37
5
100 100 10 29 39
Comment

c++ loop array

2
1
37
5
100 100 10 29 39
Comment

c++ loop array

Row 1: 1 2 3 4
Row 2: 2 4 6 8
Row 3: 4 8 12 16
Row 4: 8 16 24 32
Row 5: 16 32 48 64
Comment

c++ loop array

2
1
37
5
100 100 10 29 39
Comment

PREVIOUS NEXT
Code Example
Cpp :: how to do nCr in c++ 
Cpp :: how to convert int to std::string 
Cpp :: reverse c++ 
Cpp :: c++ type casting 
Cpp :: c++ sort vector 
Cpp :: c++ string to int conversion 
Cpp :: copy a part of a vector in another in c++ 
Cpp :: adding element in vector c++ 
Cpp :: c++ vector fill 
Cpp :: how to check if a number is prime c++ 
Cpp :: error: Microsoft Visual C++ 14.0 or greater is required. Get it with "Microsoft C++ Build Tools": https://visualstudio.microsoft.com/visual-cpp-build-tools/ 
Cpp :: string stream in c++ 
Cpp :: all data types in c++ 
Cpp :: c++ typing animation 
Cpp :: prime factorisation of a number in c++ 
Cpp :: splice string in c++ 
Cpp :: set was not declared in this scope 
Cpp :: how to send email in c++ program 
Cpp :: c++ how to read from a file 
Cpp :: tolower funciton in cpp 
Cpp :: c++ inherit from class template 
Cpp :: how to code string to int converter c++ 
Cpp :: string to integer in c++ 
Cpp :: cout c++ 
Cpp :: power of two c++ 
Cpp :: how to compile opencv c++ in ubuntu 
Cpp :: new float array c++ 
Cpp :: c++ do every 1 minutes 
Cpp :: automatic legend matlab 
Cpp :: dynamic memory c++ 
ADD CONTENT
Topic
Content
Source link
Name
1+9 =