1.把区间[0,10]10等分,求函数y=(2x+1)^2+|x-2|在各等分点处的函数值,写出算法语句
问题描述:
1.把区间[0,10]10等分,求函数y=(2x+1)^2+|x-2|在各等分点处的函数值,写出算法语句
答
十等分点分别是1,2,3,4..7,8,910255083124173230295368#include #include using namespace std;int vabs(int x){return x>0?x:-x;}int main(void){\x09int x,y;\x09for(x=1;x