Guest User

Untitled

a guest
Dec 19th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7. string valores[4];
  8. valores[0] = "20";
  9. valores[1] = "30";
  10. valores[2] = "40";
  11. valores[3] = "50";
  12. cout << valores <<endl;
  13. for(int i = 0; i<=3; i++){
  14. cout << valores[i] <<endl;
  15. }
  16. return 0;
  17. }
Add Comment
Please, Sign In to add comment