0
What's wrong
#include <iostream> using namespace std; int main() { int n; cin>>n; //size of the array int *p=NULL; p=new int nums [n]; for (int j=0; j<n; j++){ j=nums[n]; } int max = nums[0]; for(int i=0; i<n; i++) { if(nums[i]>max) max = nums[i]; } cout << max; return 0; }
5 Antworten
+ 5
You don't give an extra name when allocating memory, you access it through the pointer. The line
p = new int nums [ n ];
is invalid syntax and should just be
p = new int [ n ];
You then have to access that array through the pointer 'p', or rename the pointer itself "nums".
Furthermore, the task expects you to get the array values from the input stream, but your first for loop does something entirely else. Use std::cin to get each element from the user.
Also, you forgot to free the allocated memory at the end. While not so important in this example, it is definitely bad practice.
+ 4
The line
`p = new int nums[n]`
is invalid syntax. "nums" can't be put there. If you want the name of the allocated array to be `nums`, change the variable name (`p`) to `nums`
```
int *nums = new int[n];
// now nums can be used to access the allocated memory
```
If you're confused with the syntax, revisit the lesson on memory allocation
See last section of lesson 33.1
+ 1
Program must find the largest value in to array.
0
👍 excellent explanation