Posts by foioMario • 1 point
1 post
-
0
votes3
answers5495
viewsA: Display the values of the c++ vector on the screen
case 1: system("cls"); for(int i=0;i<10;i++){ cout<<"Produto: "; cin>>produto[i]; cout<<"\nCusto: "; cin>>custo[i]; cout<<"\nVenda: "; cin>>venda[i]; } break;…