Not having any experience with 3d programming, it appears logical to me to reserve a part of the levels(height) for stone. In other words, say you have 5 levels(in height) where you can generate blocks. Then, generate random y-values(using y as height) between 2 and 5(or 1 and 4 if considering it to be 0-indexed). After doing so, traverse the set of grass-/water blocks and put a stone block directly beneath it. I do apologize if I have misunderstood the question and therefore not answered it correctly/precisely.
[ADDED AS REPLY TO COMMENT]
For the sake of simplicity, say you have a 3D char array containing your blocks. Furthermore, say you only have two y-values; 0 and 1(0 being the bottom one).
For each (x,z)-cell at y=1 do:
Create random boolean
If boolean is true
place grass in cell
else
place water
endfor
For each (x,z)-cell at y=0 do:
place stone
endfor