Advertisement
wendy890711

陣列

Mar 29th, 2019
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main()
  5. {
  6. int n=5;
  7. double name[n]={0,1,2,3,4};
  8. cout<<*(name+3)<<endl;
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement