“Inicialize um vetor para 0” Respostas de código

Inicialize todos os elementos do vetor a 0 c

 vector<int> vect1(10); //number of elements in vector
    int value = 0;
    fill(vect1.begin(), vect1.end(), value);
Sore Scarab

Inicialize todos os elementos do vetor a 0 c

// Create a vector of size n with
    // all values as 10.
    vector<int> vect(n, 10);
Important Ibex

Inicialize um vetor para 0

// CPP program to create an empty vector
// and push values one by one.
#include <iostream>
#include <vector>
using namespace std;
 
int main()
{
    int n = 3;
 
    // Create a vector of size n with
    // all values as 10.
    vector<int> vect(n, 10);
 
    for (int x : vect)
        cout << x << " ";
 
    return 0;
}
Cooperative Chimpanzee

Respostas semelhantes a “Inicialize um vetor para 0”

Perguntas semelhantes a “Inicialize um vetor para 0”

Procure respostas de código populares por idioma

Procurar outros idiomas de código