Version imprimable
Citation: Envoyé par bm 16 / num.at[i] = val;//l'operator[] marche aussi ici 17 / std::cout << num(i) << "---" << test[i] << std::endl; Code: 123 num.at[i] = val;//l'operator[] marche aussi ici std::cout << num(i) << "---" << test[i] << std::endl; Code: 123 num.at(i) = val;//l'operator[] marche aussi ici std::cout << num[i] << "---" << test[i] << std::endl;
123 num.at[i] = val;//l'operator[] marche aussi ici std::cout << num(i) << "---" << test[i] << std::endl;
num.at[i] = val;//l'operator[] marche aussi ici std::cout << num(i) << "---" << test[i] << std::endl;
123 num.at(i) = val;//l'operator[] marche aussi ici std::cout << num[i] << "---" << test[i] << std::endl;
num.at(i) = val;//l'operator[] marche aussi ici std::cout << num[i] << "---" << test[i] << std::endl;
ok , merci , la suite sera possible ! Mais pas certaine . :) [Résolu]