Posts by Lucas Souza Soares • 21 points
2 posts
-
0
votes0
answers42
viewsQ: Duplicate the last line of the file . txt c++
#include <fstream> #include <vector> using namespace std; struct Produto { string nomeProduto,quantidade,marca,preco; }; void carregaProdutos(vector<Produto> &R) { ifstream…
-
0
votes3
answers613
viewsQ: Show python position of prime only
Read 10 integers and store them in a vector. Then type the elements that are prime and their respective positions in the vector vetor=[] for c in range(3): n = int(input("Digite um número para…