編寫程式,要求輸入x的值,輸出y的值

2021-03-19 18:34:42 字數 2942 閱讀 9093

1樓:不敗已敗

用什麼語言啊大俠,用二進位制,彙編,c,c++及?????

用c語言回答。有一函式: 編寫程式,要求輸入x 的值輸出y 的值。

2樓:匿名使用者

func 1 2 3 4對應四種要求

#include

int func1(int x)

int func2(int x)

return y;

}int func3(int x)

int func4(int x)

return y;

}int main()

c語言中,一題給出一函式,然後要求編一程式,輸入一個x值,輸出y值.

3樓:匿名使用者

沒什麼大問題. 程式中都幫

你改過來了.就是一些形式在數學上可以簡寫,在程式中必須完整的表達清楚. #include

void main()

4樓:匿名使用者

if(1<=x<10) y=2x-1; 改為 if(x>=1 && x<=10) y=2*x-1;

if(x>=10) y=3x-11;改為if(x>=10) y=3*x-11;相乘要用*,不能省略

5樓:聽不清啊

#include

int main()

6樓:匿名使用者

#include

void main()

7樓:匿名使用者

難道這個題是專門為我設計的?

哇哈哈~~ 肯定是得.. 太明顯了...

#include

void main()

哇哈哈~~ 小冉冉. 明天我來教你嘛

這麼簡單都不曉得.. 哎~~~

你安裝了c語言啊?

編寫程式,從鍵盤輸入x的值,計算並輸出分段函式y的值y=-1(x<0)

8樓:匿名使用者

#include

int main()

9樓:匿名使用者

#include

int sign(int x);

int main()

int sign(int x)

10樓:精點操

#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++,寫出來給你,不知道對不對,大家一起進步吧,希望能幫到你。

11樓:匿名使用者

這個簡單 兩個if else就解決

簡單的c語言題 編寫一程式,要求輸入x的值,輸出y的值。要求分別用switch語句和巢狀的if語句寫。

12樓:楊柳小火

switch語句::

#include

main()

printf("y=%d",b);

}if語句::

#include"stdio.h"

main()

13樓:林嶺飛狐

#include

void main()}

14樓:匿名使用者

|/*使用if巢狀語句

回*/#include

void main()

/*使用switch語句*/

#include

void main()

while(x<-5||答x>10);

if(x<0) choice=1;

if(x==0) choice=0;

if(x>0) choice=2;

switch(choice)

printf("%d\n",y);}

15樓:懶了的猴子

#include

main()

16樓:匿名使用者

#include

int main()

else

if(x==0)

else

if((x>0)&&(x<10))

else

printf("the input is error!");

return 0;}

17樓:匿名使用者

if版:

#include

#include

int main(int argc, char *argv)printf("%d\n",y);

return 0;}

用switch語句實現下列函式 編寫程式,要求輸入x的值,輸出y的值.

18樓:微策天下**

#include

void main()}

19樓:匿名使用者

if(age>=18&&age<25)

cout<<"你的年齡適合這個項工作\n";

/*********

if(a>0&&b>0)

c=a*b;

&&是並且的意思。

20樓:匿名使用者

public int switchtest(int x)else if(x == 0)else if(x > 0 && x < 10)

switch(flag)}

對於以下函式編寫程式,要求輸入x的值,輸出y的值。用swit

if age 18 age 25 cout 你的年齡適合這個項工作 n if a 0 b 0 c a b 是並且的意思。include main if z 3 printf error n else printf y d n y public int switchtest int x else if...

C語言編寫程式,要求輸入整數,輸出其階乘

long func int num return tmp 程式如來 下 include stdio.h int main void printf 該數的zhi階乘為acc d n acc return 0 運用for迴圈來求階乘。執行結dao果 如求十的階乘 include main console...

c語言編寫程式輸入攝氏溫度,要求輸出華氏溫度。公式為f

程式如下 include int main 如圖 除錯通過 擴充套件資料 c語言編寫程式時的注意事項 1 書寫識別符號時,忽略了大小寫字母的區別 編譯程式把a和a認為是兩個不同的變數名,而顯示出錯資訊。c認為大寫字母和小寫字母是兩個不同的字元。習慣上,符號常量名用大寫,變數名用小寫表示,以增加可讀性...