“Zainicjuj wektor do 0” Kod odpowiedzi

Zainicjuj wszystkie elementy wektora do 0 C

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

Zainicjuj wszystkie elementy wektora do 0 C

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

Zainicjuj wektor do 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

Odpowiedzi podobne do “Zainicjuj wektor do 0”

Pytania podobne do “Zainicjuj wektor do 0”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu