Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~161 People Reached
Favorite Forums
Favorite Tags
c++ x 1
Member Avatar for WatchingSafe

Here is the input file. 12345 67890 I want 123 in array1. I want 678 in array2. int array1[10], array2[10]; int n, i=0; ifstream x; x.open("input.txt", ios::in) while( (!x.eof()) || (i<3) ) { x >> n; array1[i] = n; i++; } //here should be the command for next line i …

Member Avatar for rproffitt
0
161