1樓:聽不清啊
input to a
input to b
if a>b
?aelse
?bendif
或者:input "請輸入第一個數:" to ainput "請輸入第二個數:" to b?"最大值為:",max(a,b)
2樓:元司盤山晴
settalk
offclea
a=0b=0
c=0input
'請輸入第一個數:'toa
input
'請輸入第二個數:'tob
input
'請輸入第三個數:'toc
x=min(a,b,c)
??'最小的數是:',x
電腦程式設計:編寫一個程式,輸入兩個數,輸出其中最大數 5
3樓:匿名使用者
basic
dim x,y as integer
input x,y
if x>y then print x else print ysleep
endpascal
var x,y:integer;
begin
read(x,y);
if x>y then write(x) else write(y);
end.
希望對您有幫助。
4樓:常玉標
#include
int max (int a,int b)
void main()
c語言編寫程式 輸入兩個數a,b,求輸出他們的和。(a,b可
include stdio.h void main 說明 c語言裡對float型別資料的表示範圍為 3.4 10 38 3.4 10 38。double為 1.7 10 308 1.7 10 308,long double為 1.2 10 4932 1.2 10 4932.這裡使用long doub...
c語言程式 輸入任意兩個數,求兩個數之間的所有資料的和
執行結果是copy對的!問題估計錯在輸入語句bai的格式上 du,scanf d d a,b 兩個變數之間沒有逗號zhi,那麼 從鍵dao盤上輸入a 1,b 100應該是 1 空格 100,千萬不能寫成1,100 以下為我執行的結果圖 補充一點,你修改的程式是else語句是多餘的,沒有第一個好!in...
shell程式設計 編寫程式顯示下圖圖案。由輸入決定輸出多少行,下面是當行數為8時的情況
用printf列印固定寬度的字串預設是右對齊的。bin sh read p input the line number row for n in seq row dostr for m in seq n dostr done printf s n str done 還是python簡單 usr bi...