2010-10-14 183 views
-2

使用VB.net,C#和SQL Server如何編寫僞代碼

我想爲我的應用程序編寫一個僞代碼。

僞代碼就像編碼或流程圖...?

任何人都可以爲任何類型的應用程序提供樣本僞代碼。

+0

爲什麼需要這個僞代碼?你怎麼能爲你的問題有這些標籤? – Kobi 2010-10-14 08:54:41

+1

什麼.......?你知道僞代碼是什麼嗎?我希望你不要以爲它是.NET的特性或者什麼... – RPM1984 2010-10-14 09:17:11

+0

我想你真正的問題是「什麼是僞代碼?」。 – 2012-08-21 21:29:35

回答

2

僞代碼只是一個表達程序的意圖沒有被語法正確的方式。

一個例子可以是:

print "What is your name" 
read input from user 
print "Hello " + user input 

用於從ATM取錢又如:

if the selected account's balance is greater than the requested amount 
    reduce balance by requested amount 
else 
    display error message 
end if 
5

下面是寫僞代碼的算法:

寫你自己的話

2

我認爲這將是有益的:

http://en.wikipedia.org/wiki/Pseudo-code

特別:

僞代碼語法 沒有標準,因爲僞代碼中的程序是 不是可執行程序。僞代碼 類似於但不應該與 混淆,骨架程序包括 虛擬代碼,其可以被編譯爲 而沒有錯誤。流程圖可以被認爲是 以作爲僞代碼的圖形替代 。

1

僞代碼應該是一個自然語言等效代碼,例如:

while there are items left to process 
    process the current item 
    remove the item from the collection