1樓:匿名使用者
樓主是不是指的用c語言裡面的a?b:c這個條件語句?
如果是的話,可以這麼寫
x<2?y=x:(x<=10?y=2x:y=-3x)
2樓:匿名使用者
使用什麼語言?
c語言#include
void main()
c++語言
#include
void main()
pascal語言
program pp;
varx,y:real;
begin
write('請輸入一個數x:');
readln(x);
if x<2 then
y=x;
else
if (x<=10) then
y=2*x
else
y=-3*x;
writeln('y=',y);
end.
basic語言
dim x,y as single
x=val(inputbox("請輸入一個數x",,0))if x<2 then
y=xelse
if (x<=10) then
y=2*x
else
y=-3*x
endif
endif
print("y=",y)
vfp語言
clear
input "請輸入一個數x" to x
if x<2 then
y=xelse
if (x<=10) then
y=2*x
else
y=-3*x
endif
endif
? "y=",y
3樓:匿名使用者
if x<2 then
y=xelse
if x>10 then
y=2x
else
y=-3x
end if
end if
4樓:匿名使用者
呵呵,不是照著抄就行了嗎?if(x < 2) y = x;else if(x >= 2 && x <= 10) y = 2 * x;else y = -3 * x;
c語言,分別用if 語句和switch語句編寫程式求分段函式的值
5樓:飛飛雨雨輕輕
//if語句
#inlcude
#include
define a 10 //a自己取值
void main()
//switch語句
#include
#include
define a 10 //a自己取值
void main()
編寫程式,從鍵盤輸入x的值,計算並輸出分段函式y的值y=-1(x<0)
6樓:匿名使用者
#include
int main()
7樓:匿名使用者
#include
int sign(int x);
int main()
int sign(int x)
8樓:精點操
#include
using namespace std;
void main()
{int x=0;
int y=0;
cout<<"請輸入整數值"<>x>>endl;
if (x<0){
y=-1;
cout<0){
y=1;
cout<是新手,剛學c++,寫出來給你,不知道對不對,大家一起進步吧,希望能幫到你。
9樓:匿名使用者
這個簡單 兩個if else就解決
c語言編寫程式,完成下面分段函式y 的計算, x由鍵盤輸入
10樓:暖陽和風
#include "stdio.h"
void main()
11樓:千鋒教育
#include
int main(void)else if (x>=1&&x<12) else
printf("y= %d\n",y);
return 0;}
12樓:明_礬
#include "stdio.h"
void main()
else if( x >= 1 && x < 12 )else}
13樓:匿名使用者
float funval(float param)
int main()
1、編一程式,輸入一個數x,按照下列分段函式計算並輸出y的值。(50分)
14樓:匿名使用者
#include
#include
using namespace std;
main()
//也許有點語法錯誤,呵呵
參考就可以了。
15樓:武端運
#include
main()
用迴圈語句編寫程式,其功能是計算 s
void main printf f n s system pause 關鍵是會不會溢位 include int main void cout sum endl return 0 tanch8800331 提供的 有些錯誤,我簡單修改一下。include int main void cout sum...
用C編寫程式函式求表示式
float fun int n return fsum int fun int n return sum c 程式設計,求和 1 2,1 3,1 4,1 5,1 6,1 7,編寫函式求序列前n項之和 噢,要函式啊 include double sum int n return s void main...
C語言怎樣用遞迴方法編寫程式求s
include int n,t 1,s 0 void sum fac int k int main 提供思路,如果使用遞迴,主要針對階乘,因此,在主函式裡提供十個數相加,用版迴圈,然後重新定 權一個函式,在函式裡提供遞迴的演算法,即不斷呼叫直至結束得到結果,然後相加就行。如果不是使用遞迴,可使用上一...