MATLAB: How to plot the number on top of 3D Bar Graphs

MATLAB

I have wrote a code to get a 3D Graph:
A=[0.8 0.9 0.98; 0.6 0.7 0.87; 0.67 0.75 0.7; 0.75 0.68 0.75]
bar3(A, 0.5)
set(gca,'XTickLabel',{'Urban' 'Rural' 'Pe area'})
set(gca,'YTickLabel',{'Sunshine' 'Rain' 'Snow' 'Foggy'})
How would I go about plotting the A-values of each of the bars on top of the bars?