I have two files which goes like this :
FILE A is :
J5
J15
J25
J30
J35
and FILE B is:
J0 23 56
J5 24 58
J10 26 60
J15 29 63
J20 31 36
J25 23 32
J30 51 14
J35 34 21
J40 46 12
The problem is that I have to check FILE A with FILE B for its contents and copy the values of Jth items in a new file like this : ( FILE C ) :
J5 24 58
J15 29 63
J25 23 32
J30 51 14
J35 34 21
I am new to programming and a such finding it very difficult to do this. Thanks.