青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品

隨筆 - 60  文章 - 5  trackbacks - 0
<2011年4月>
272829303112
3456789
10111213141516
17181920212223
24252627282930
1234567

常用鏈接

留言簿(2)

隨筆分類(42)

隨筆檔案(60)

文章檔案(2)

我收藏的博客

搜索

  •  

最新評論

閱讀排行榜

評論排行榜

原文:http://www.cprogramming.com/tutorial/thinking.html
很多人通過Email問我,怎樣開始寫一個程序。也許最好的建議非常簡單,把程序的步驟寫下來:一旦你開始把想法或者代碼寫下來后,你就會對你的項目有一些感覺了。通常程序設計有兩種通用的做法:從上到下的方式和從下到上的方式。
A lot of people email me asking the way to start some program or another. Perhaps the best advice is simply to start writing down a layout for the program: once you start writing down ideas or code you'll start to get a feel for your project. There are two standard methods of program design: the top-down approach and the bottom-up approach. Top-down programming involves writing code that calls functions you haven't defined and working through the general algorithm before writing the functions that do the processing. Top-down programming is, to a good degree, a very abstract way of writing code because it starts out by using functions you haven't designed, and that you perhaps do not know how to design. The bottom-up approach to programming is the opposite: the programmer writes the basic functions she realizes will be necessary at some point in the programming and then work up to the more complex parts of the program.

比較有意思的是,那兩種方法都是關注程序中要執行的動作或方法,而不是關注程序要處理的數據。很多時候,寫程序最好的方法是,寫出你將要用到或處理的數據,然后再從上到下的想怎么樣去處理這些數據,最后才能得到你需要的結果。首先定義數據,然后再寫出那些要處理這些數據的相關的函數。,這樣你才會得到你的程序應該怎樣寫的基本思路,
It's interesting that both of these approaches focus on the actions of the program rather than the objects the program manipulates - variables. Many times, the best way to write a program is to figure out the variables you need to work with and then progress with a top-down approach to the program that manipulates those variables. By defining variables first and then working with functions that work on them, you will always maintain a basic foundation of what your program should be doing. Once you have an idea of what variables you will be using, then you can write functions to perform the operations you need to perform on the variables while maintaining sight of the goal. Finally you can write the code for each individual function.

Another value to defining variables before writing code is that many times you can accomplish an entire program without many functions; this fact is especially true when you are a beginner making simple programs. The variables give you the raw materials you need to begin working with the tools: loops, if statements, library functions, and perhaps user defined functions.


現在讓我們來看一個關于怎樣開始寫一個完整程序的例子。假設你要寫的程序是要模擬一個DVD商店的租售系統,這個系統需要計算出出租DVD的總收入。你的程序有可能要求,需要輸入一個代碼,告訴你這個DVD租售的價格是2元一天還是是3元一天,然后還需要它出租了多少天,最后如果這個輸入的代碼是0,整個程序就結束了。你應該要分別計算出租金為3元/天和2元/天的DVD的出租的總天數。拿這個程序來說,思考設計程序的最好的方式是,想象為了計算出租金的收入,你需要存儲哪些信息:

 

  • 你需要一個變量用來存儲總收入,當程序結束時;
  • 你需要一個臨時變量用來存儲代表DVD的租金的代號;
  • 你需要一個臨時變量用來存儲某個DVD出租的天數;
  • 你需要一個變量來存儲租金為3元/天的所有DVD出租了多少天的總數;
  • 最后,你還需要一個變量來存儲租金為2元/天的所有DVD出租了多少天的總數;

 

Let's take a look at an example of how to go about thinking about a program. If you were to write a program to simulate a video store rental system that calculates the gross revenue from rentals, you might be asked to write a program that accepts a code telling you whether a certain video was rented at $2.00 (input as 2) a day or $3.00 (input as 3) a day and then asks for how many days it was rented out for; finally, if the code for the cost of rental is 0 the program should terminate. You should also count the number of days videos were rented at $3.00 per day and $2.00 per day. The best way to think about the design for a program such as this one is to imagine what information you need to store in order to calculate the revenue:

  • you need a variable to store the total dollar amount at the end of the program;
  • you need a temporary variable to store the code for the cost of a transaction;
  • you need a temporary variable to store the number of days a specific video was rented;
  • you need a variable to store the number of days each video was rented;
  • you need a variable to count the total number of days $3.00 videos were rented;
  • finally, you need a variable to count the total number of days $2.00 videos were rented.

一旦你認識到你需要這些數據,那么你就很容易想出如何處理這些數據:比如,你知道租金2元/天的DVD的總收入=所有租金為2元/天DVD的出租天數之和*2;類似的也可以計算出租金3元/天的DVD的總收入。你也會理解這個“代表DVD的租金的代號”,這個變量的用處是,當用戶輸入某個DVD出租的天數時,決定哪個變量會被操作。在你的程序中你需要一個循環結構。


Once you realize you need these variables, you can easily imagine how to translate them in terms of each other: for example, you know the total amount of revenue is the number of days videos at $2.00 were rented times $2.00; in similar fashion, you know the relationship for $3.00 a day videos. You should understand that the transaction 'code' determines which variables are manipulated when the user inputs the number of days a specific video was rented (for example, whether to add to the count of days for $2.00 videos or $3.00 videos). You'll probably need a loop in your program (although you can't necessarily infer this from the variables).

 

程序的代碼有可能會像下面那樣:

The code might look as follows:

 1 
 3 int main()
 4 {
 5   int total_dollars = 0;
 6   int total_days_at_3_dollars = 0;
 7   int total_days_at_2_dollars = 0;
 8   int transaction_code = 0;
 9   int days_for_one_video = 0;
10   do
11   {
12     if(transaction_code==2)
13       total_days_at_2_dollars+=days_for_one_video;
14     if(transaction_code==3)
15       total_days_at_3_dollars+=days_for_one_video;
16     cout<<"Please enter a transaction code and number of days a video was rented: ";
17     cin>>transaction_code>>days_for_one_video;
18   }while(transaction_code!=0)
19   return 0
20 }

我希望,你現在已經有了一個基本的思路,在寫代碼之前,應該如何安排你的程序的結構。

Hopefully, you now have a basic idea of how to lay out your program structure in your mind before you begin to write code.

 

posted on 2011-10-19 11:00 黃劍父 閱讀(1908) 評論(0)  編輯 收藏 引用 所屬分類: 編程學院
青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品
  • <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
    <noscript id="pjuwb"></noscript>
          <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
            <dd id="pjuwb"></dd>
            <abbr id="pjuwb"></abbr>
            亚洲第一主播视频| 久久久国产精品一区二区三区| 久久永久免费| 欧美激情1区2区3区| 欧美久久九九| 亚洲高清在线精品| 国产精品影音先锋| 亚洲欧美制服另类日韩| 久久不见久久见免费视频1| 欧美欧美全黄| 午夜精品影院| 亚洲电影在线| 亚洲视频1区| 国产一区二区精品久久99| 在线一区二区日韩| 亚洲一区免费在线观看| 美国十次成人| 欧美大片网址| 蜜桃av久久久亚洲精品| 亚洲精品影视| 欧美岛国激情| 久久精品官网| 免费视频一区| 欧美日韩免费区域视频在线观看| 99riav1国产精品视频| 一区二区三区.www| 国户精品久久久久久久久久久不卡 | 午夜激情亚洲| 欧美日韩精品欧美日韩精品一| 91久久精品国产91久久| 一区二区三区成人精品| 亚洲字幕在线观看| 老鸭窝91久久精品色噜噜导演| 一本久久精品一区二区| 欧美日韩成人综合在线一区二区 | 国产精品户外野外| 亚洲国产日韩欧美| 久久国产精品色婷婷| 久久成人国产精品| 国内久久精品| 欧美国产精品人人做人人爱| 亚洲风情在线资源站| 亚洲综合99| 欧美一区二区三区在线视频| 亚洲欧美日韩国产综合精品二区| 美女黄色成人网| 久久综合色综合88| 亚洲第一成人在线| 99精品国产一区二区青青牛奶| 国产精品亚洲综合天堂夜夜 | 国产精品v欧美精品v日本精品动漫 | 亚洲精品国产精品国自产在线| 91久久精品国产91性色tv| 亚洲午夜电影| 午夜精品视频在线| 欧美日韩另类在线| 毛片一区二区三区| 在线成人小视频| 欧美怡红院视频一区二区三区| 一本一道久久综合狠狠老精东影业| 亚洲全黄一级网站| 欧美在线地址| 久久久噜噜噜久噜久久| 亚洲综合999| 久久在线免费观看| 亚洲私人影院在线观看| 欧美乱大交xxxxx| 性欧美8khd高清极品| 亚洲综合视频一区| 欧美视频专区一二在线观看| 香蕉成人啪国产精品视频综合网| 欧美在线一级视频| 一区二区三区精品在线| 欧美激情精品久久久久久蜜臀| 久久精品国产v日韩v亚洲 | 一本久久综合亚洲鲁鲁| 久久综合图片| 免费成人黄色片| 亚洲日本国产| 亚洲欧美日本视频在线观看| 国产伦精品一区| 一区二区三区视频在线观看| 国产亚洲一级高清| 91久久精品美女高潮| 欧美日韩一区二区三区| 伊人久久男人天堂| 亚洲视频在线观看网站| 99这里只有精品| 亚洲桃花岛网站| 中文亚洲字幕| 亚洲国产精品久久久久秋霞影院| 欧美xart系列高清| 亚洲区欧美区| 久久国产精品99国产精| 在线日韩中文| 1024日韩| 午夜精品一区二区在线观看 | 欧美色网在线| 母乳一区在线观看| 国产日韩精品视频一区二区三区| 久久这里只精品最新地址| 一区视频在线播放| 中日韩午夜理伦电影免费| 在线观看精品一区| 一区二区三区高清在线观看| 国内精品久久久久影院薰衣草| 亚洲欧美日本伦理| 亚洲欧洲日夜超级视频| 欧美国产大片| 91久久久亚洲精品| 亚洲九九九在线观看| 久久久久99精品国产片| 欧美在线观看一区| 在线观看日韩| 麻豆成人在线播放| 久久久夜色精品亚洲| 国内欧美视频一区二区| 欧美亚洲一区| 久久精品免费观看| 国产精品美女午夜av| 免费日韩精品中文字幕视频在线| 久久激情视频免费观看| 亚洲精品美女在线观看播放| 欧美精品18+| 亚洲视频图片小说| 免费在线国产精品| 男男成人高潮片免费网站| 亚洲国产人成综合网站| 欧美精品少妇一区二区三区| 亚洲自拍偷拍网址| 狼人社综合社区| 欧美黄色精品| 欧美激情视频在线免费观看 欧美视频免费一| 亚洲高清中文字幕| 欧美成人综合一区| 欧美福利一区| 亚洲成人资源| 夜夜爽av福利精品导航| 亚洲激情影院| 99一区二区| 国内一区二区三区| 欧美午夜不卡影院在线观看完整版免费| 亚洲欧美韩国| 亚洲一级特黄| 亚洲欧洲一区二区在线播放| 久久亚洲精选| 欧美一区二区三区四区视频| 亚洲主播在线| 久久成人18免费网站| 免费观看成人鲁鲁鲁鲁鲁视频 | 久久久久国产成人精品亚洲午夜| 亚洲经典在线| 亚洲午夜久久久久久久久电影院 | 亚洲精品在线视频观看| 136国产福利精品导航网址| 亚洲国产高清自拍| 一区二区三区不卡视频在线观看 | 亚洲高清在线观看一区| 欧美大色视频| 亚洲激情视频在线| 午夜视频一区在线观看| 久久久久久**毛片大全| 欧美高清在线播放| 亚洲乱码精品一二三四区日韩在线| 日韩一级大片| 老司机午夜精品| 狠狠爱成人网| 99成人免费视频| 一本色道久久综合亚洲精品高清| 久久人人爽人人| 香蕉久久久久久久av网站| 你懂的成人av| 国内精品伊人久久久久av一坑| 久久久久国产免费免费| 亚洲欧美日韩在线一区| 欧美一区亚洲一区| 国产亚洲精品成人av久久ww| 日韩亚洲欧美综合| 久久精品观看| 欧美国产精品日韩| 久久美女性网| 亚洲精选在线| 一本色道久久综合| 欧美福利一区二区| 国产日韩亚洲| 欧美在线综合视频| 久久精品国产精品| 国产精品视频一区二区高潮| 亚洲一区二区三区高清不卡| 欧美aⅴ99久久黑人专区| 亚洲国产专区校园欧美| 国产精品毛片a∨一区二区三区| 亚洲毛片播放| 亚洲女爱视频在线| 国产精品一区二区三区成人| 久久这里只有| 国产精品天美传媒入口| 91久久精品美女高潮| 国产亚洲欧洲| 欧美黄色一级视频|