level 4
贴吧用户_71yXWA8
楼主
a := RegionPlot[{y <= x^2}, {x, 0, 1}, {y, 0, 1}];
b := RegionPlot[{y < x, y >= x^2}, {x, 0, 1}, {y, 0, 1}];
c := RegionPlot[{y > x}, {x, 0, 1}, {y, 0, 1}];
Show[a, b, c]

2022年06月29日 03点06分
1
b := RegionPlot[{y < x, y >= x^2}, {x, 0, 1}, {y, 0, 1}];
c := RegionPlot[{y > x}, {x, 0, 1}, {y, 0, 1}];
Show[a, b, c]
