展开全部
#include <stdio.h>
void triangle(int n) {
int i,j;
for(i = 0; i < n; ++i) {
for(j = 0; j < i; ++j)
printf(" ");
for(j = 0; j < n - i; ++j)
printf("*");
printf("\n");
}
}
int main() {
triangle(5);
triangle(7);
return 0;
}
#include <stdio.h>
#include <math.h>
double fun(double x) {
double y = 0,eps = 1E-6;
if(x <= -5 && (x >= 3 && x <= 5)) {
printf("x = %lf,不在定义域内!\n",x);
return y;
}
if(fabs(x) <= eps || fabs(x - 1) <= eps)
y = x;
else if(x > -5 && x < 3)
y = 3 * x - 2;
else y = 2 * x + 7;
return y;
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询