锘??xml version="1.0" encoding="utf-8" standalone="yes"?>97精品依人久久久大香线蕉97,日韩欧美亚洲综合久久,久久免费视频网站http://m.shnenglu.com/gxmmrr102/category/10030.htmlzh-cnThu, 21 May 2009 19:11:08 GMTThu, 21 May 2009 19:11:08 GMT60struct 涓巆lass 鐨勫尯鍒?/title><link>http://m.shnenglu.com/gxmmrr102/archive/2009/05/21/83610.html</link><dc:creator>寮規澂涓絎?/dc:creator><author>寮規澂涓絎?/author><pubDate>Thu, 21 May 2009 14:19:00 GMT</pubDate><guid>http://m.shnenglu.com/gxmmrr102/archive/2009/05/21/83610.html</guid><wfw:comment>http://m.shnenglu.com/gxmmrr102/comments/83610.html</wfw:comment><comments>http://m.shnenglu.com/gxmmrr102/archive/2009/05/21/83610.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://m.shnenglu.com/gxmmrr102/comments/commentRss/83610.html</wfw:commentRss><trackback:ping>http://m.shnenglu.com/gxmmrr102/services/trackbacks/83610.html</trackback:ping><description><![CDATA[<p>浠ュ墠涓鐩存病鏈夋槑鐧絪truct緇撴瀯浣撲笌class綾?鐨勫尯鍒細<br>(1)<br>     鍚嶅瓧涓嶅悓涓涓槸struct錛屼竴涓槸class<br>(2)<br>  榛樿鐨勮闂睘鎬т笉鍚?nbsp;struct鏄痯ublic錛宑lass 鏄痯rivate</p> <img src ="http://m.shnenglu.com/gxmmrr102/aggbug/83610.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://m.shnenglu.com/gxmmrr102/" target="_blank">寮規澂涓絎?/a> 2009-05-21 22:19 <a href="http://m.shnenglu.com/gxmmrr102/archive/2009/05/21/83610.html#Feedback" target="_blank" style="text-decoration:none;">鍙戣〃璇勮</a></div>]]></description></item><item><title>C/C++: 鎺у埗鍙拌緭鍏ュ瘑鐮? 鐢?鍙鋒帺钘?http://m.shnenglu.com/gxmmrr102/archive/2009/05/12/82663.html寮規澂涓絎?/dc:creator>寮規澂涓絎?/author>Tue, 12 May 2009 02:44:00 GMThttp://m.shnenglu.com/gxmmrr102/archive/2009/05/12/82663.htmlhttp://m.shnenglu.com/gxmmrr102/comments/82663.htmlhttp://m.shnenglu.com/gxmmrr102/archive/2009/05/12/82663.html#Feedback0http://m.shnenglu.com/gxmmrr102/comments/commentRss/82663.htmlhttp://m.shnenglu.com/gxmmrr102/services/trackbacks/82663.html//姝や唬鐮佹湁涓涓綉鍙嬫墍鍐?/span>

#include 
<iostream>
#include 
<conio.h>

/**
 * 縐樺瘑鍦ㄤ簬conio.h涓殑getch()浠庨敭鐩樹腑璇誨彇瀛楃鏃?騫朵笉浼氬湪灞忓箷涓婅緭鍑哄凡緇忚緭鍏ョ殑瀛楃,
 * 鑰岀敤涓涓猵utch('*')鏉ュ搫楠?浠h〃宸茬粡杈撳叆涓涓瓧絎?br> * 鎬笉寰楄繖涓ご鏂囦歡瑕佸彨conio.h, con鐨勬剰鎬濆氨鏈夊搫楠?鐪嬫潵灝辨槸鐢辨鑰屾潵.
 
*/


using namespace std;

int main() {
        
char* password;
        
char* passwordConfirm;

        
int length = 4;
        password 
= new char[length + 1];
        passwordConfirm 
= new char[length + 1];

        
char* p = NULL;
        
int count = 0;

        cout 
<< "Input password : ";
        p 
= password;
        count 
= 0;
        
//fflush(stdin);
        while (((*= getch()) != 13&& count < length) {
                
// 榪欓噷涓嶆槸'\n'(10), new line
                
// 鑰屾槸'\r'(13), reback. 鍗蟲槸鎸変笅鍥炶濺閿?濂藉儚榪欎釜涓滆タ鏄痩inux鐨?
                
// 涓昏鏄笌getch榪欎釜鍑芥暟鏈夊叧.
                putch('*');
                fflush(stdin);

                p
++;
                count
++;
        }

        password[count] 
= '\0';

        cout 
<< endl << "Confirm the password : ";
        p 
= passwordConfirm;
        count 
= 0;
        
//fflush(stdin);
        while (((*= getch()) != 13&& count < length) {
                putch(
'*');
                fflush(stdin);

                p
++;
                count
++;
        }

        passwordConfirm[count] 
= '\0';

        cout 
<< endl;
        
if (strcmp(password, passwordConfirm) == 0{
                cout 
<< "The password is right." << endl;
                cout 
<< password << endl;
        }
 else {
                cout 
<< "Confirm password fail." << endl;
                cout 
<< password << endl << passwordConfirm << endl;
        }


        
return 0;
}




]]>
N鐨囧悗闂姹傝Вhttp://m.shnenglu.com/gxmmrr102/archive/2009/04/01/78615.html寮規澂涓絎?/dc:creator>寮規澂涓絎?/author>Wed, 01 Apr 2009 15:17:00 GMThttp://m.shnenglu.com/gxmmrr102/archive/2009/04/01/78615.htmlhttp://m.shnenglu.com/gxmmrr102/comments/78615.htmlhttp://m.shnenglu.com/gxmmrr102/archive/2009/04/01/78615.html#Feedback0http://m.shnenglu.com/gxmmrr102/comments/commentRss/78615.htmlhttp://m.shnenglu.com/gxmmrr102/services/trackbacks/78615.html闃呰鍏ㄦ枃

]]>
濡備綍璁捐涓涓寖鍨嬬畻娉?/title><link>http://m.shnenglu.com/gxmmrr102/archive/2009/03/30/78428.html</link><dc:creator>寮規澂涓絎?/dc:creator><author>寮規澂涓絎?/author><pubDate>Mon, 30 Mar 2009 15:54:00 GMT</pubDate><guid>http://m.shnenglu.com/gxmmrr102/archive/2009/03/30/78428.html</guid><wfw:comment>http://m.shnenglu.com/gxmmrr102/comments/78428.html</wfw:comment><comments>http://m.shnenglu.com/gxmmrr102/archive/2009/03/30/78428.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://m.shnenglu.com/gxmmrr102/comments/commentRss/78428.html</wfw:commentRss><trackback:ping>http://m.shnenglu.com/gxmmrr102/services/trackbacks/78428.html</trackback:ping><description><![CDATA[<p>// essential  c++ <br>鍚戜竴涓鍣?姣斿 vector)涓坊鍔犳暟瀛楀悗錛岀劧鍚庨殢渚胯緭鍏ュ緟姣旇緝鐨勬暟瀛? int a ;)錛屾眰鎵懼嚭鍦╲ector涓瘮a澶х殑鏁板瓧錛屾瘮a灝忕殑鏁板瓧錛屽拰a鐩哥瓑鐨勬暟瀛楋紝鎴栬呮槸a鐨?鍊嶏紝5鍊嶇瓑涔嬬被鐨勬暟瀛楃殑闆嗗悎.<br><br>//寮濮嬬湅涓嬮潰鐨勪唬鐮佷箣鍓嶏紝浣犳槸鎬庝箞鎬濊冪殑鍛紵浣犳槸涓嶆槸瑙夊緱鐩存帴鍦ㄩ噷闈㈠啓涓嚱鏁版瘮杈冨氨鏄簡錛熸垨鑰呮槸鍏朵粬鐨勫憿錛?/p> <div style="BORDER-RIGHT: #cccccc 1px solid; PADDING-RIGHT: 5px; BORDER-TOP: #cccccc 1px solid; PADDING-LEFT: 4px; FONT-SIZE: 18pt; PADDING-BOTTOM: 4px; BORDER-LEFT: #cccccc 1px solid; WIDTH: 98%; WORD-BREAK: break-all; PADDING-TOP: 4px; BORDER-BOTTOM: #cccccc 1px solid; BACKGROUND-COLOR: #eeeeee"><span style="COLOR: #008080"> 1</span><img src="http://m.shnenglu.com/Images/OutliningIndicators/None.gif" align=top><span style="COLOR: #000000">#include</span><span style="COLOR: #000000"><</span><span style="COLOR: #000000">iostream</span><span style="COLOR: #000000">></span><span style="COLOR: #000000"><br></span><span style="COLOR: #008080"> 2</span><span style="COLOR: #000000"><img src="http://m.shnenglu.com/Images/OutliningIndicators/None.gif" align=top>#include </span><span style="COLOR: #000000"><</span><span style="COLOR: #000000">vector</span><span style="COLOR: #000000">></span><span style="COLOR: #000000"><br></span><span style="COLOR: #008080"> 3</span><span style="COLOR: #000000"><img src="http://m.shnenglu.com/Images/OutliningIndicators/None.gif" align=top>#include </span><span style="COLOR: #000000"><</span><span style="COLOR: #0000ff">string</span><span style="COLOR: #000000">></span><span style="COLOR: #000000"><br></span><span style="COLOR: #008080"> 4</span><span style="COLOR: #000000"><img src="http://m.shnenglu.com/Images/OutliningIndicators/None.gif" align=top></span><span style="COLOR: #0000ff">using</span><span style="COLOR: #000000"> </span><span style="COLOR: #0000ff">namespace</span><span style="COLOR: #000000"> std;<br></span><span style="COLOR: #008080"> 5</span><span style="COLOR: #000000"><img id=Codehighlighter1_76_153_Open_Image onclick="this.style.display='none'; Codehighlighter1_76_153_Open_Text.style.display='none'; Codehighlighter1_76_153_Closed_Image.style.display='inline'; Codehighlighter1_76_153_Closed_Text.style.display='inline';" src="http://m.shnenglu.com/Images/OutliningIndicators/ExpandedBlockStart.gif" align=top><img id=Codehighlighter1_76_153_Closed_Image style="DISPLAY: none" onclick="this.style.display='none'; Codehighlighter1_76_153_Closed_Text.style.display='none'; Codehighlighter1_76_153_Open_Image.style.display='inline'; Codehighlighter1_76_153_Open_Text.style.display='inline';" src="http://m.shnenglu.com/Images/OutliningIndicators/ContractedBlock.gif" align=top></span><span id=Codehighlighter1_76_153_Closed_Text style="BORDER-RIGHT: #808080 1px solid; BORDER-TOP: #808080 1px solid; DISPLAY: none; BORDER-LEFT: #808080 1px solid; BORDER-BOTTOM: #808080 1px solid; BACKGROUND-COLOR: #ffffff">/**/</span><span id=Codehighlighter1_76_153_Open_Text><span style="COLOR: #008000">/*</span><span style="COLOR: #008000"><br></span><span style="COLOR: #008080"> 6</span><span style="COLOR: #008000"><img src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" align=top>* 鍗曠嫭鍐欏嚭鐩稿叧鐨勫嚱鏁?nbsp; 濡?nbsp;姣旇緝錛屽嶆暟涔嬬被鐨勶紝鍚庨潰璋冪敤 銆?br></span><span style="COLOR: #008080"> 7</span><span style="COLOR: #008000"><img src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" align=top>* 姝ゅ浠呭啓浜嗗皬浜庡拰澶т簬鍑芥暟   鍏朵粬鐨勪緷嬈$被鎺ㄣ?br></span><span style="COLOR: #008080"> 8</span><span style="COLOR: #008000"><img src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" align=top>* 娉ㄦ剰鍙傛暟 涓庢寚閽堝嚱鏁扮殑鍖歸厤<br></span><span style="COLOR: #008080"> 9</span><span style="COLOR: #008000"><img src="http://m.shnenglu.com/Images/OutliningIndicators/ExpandedBlockEnd.gif" align=top></span><span style="COLOR: #008000">*/</span></span><span style="COLOR: #000000"><br></span><span style="COLOR: #008080">10</span><span style="COLOR: #000000"><img src="http://m.shnenglu.com/Images/OutliningIndicators/None.gif" align=top></span><span style="COLOR: #0000ff">bool</span><span style="COLOR: #000000"> less_than(</span><span style="COLOR: #0000ff">int</span><span style="COLOR: #000000"> v1,</span><span style="COLOR: #0000ff">int</span><span style="COLOR: #000000"> v2)<br></span><span style="COLOR: #008080">11</span><span style="COLOR: #000000"><img id=Codehighlighter1_185_217_Open_Image onclick="this.style.display='none'; Codehighlighter1_185_217_Open_Text.style.display='none'; Codehighlighter1_185_217_Closed_Image.style.display='inline'; Codehighlighter1_185_217_Closed_Text.style.display='inline';" src="http://m.shnenglu.com/Images/OutliningIndicators/ExpandedBlockStart.gif" align=top><img id=Codehighlighter1_185_217_Closed_Image style="DISPLAY: none" onclick="this.style.display='none'; Codehighlighter1_185_217_Closed_Text.style.display='none'; Codehighlighter1_185_217_Open_Image.style.display='inline'; Codehighlighter1_185_217_Open_Text.style.display='inline';" src="http://m.shnenglu.com/Images/OutliningIndicators/ContractedBlock.gif" align=top></span><span id=Codehighlighter1_185_217_Closed_Text style="BORDER-RIGHT: #808080 1px solid; BORDER-TOP: #808080 1px solid; DISPLAY: none; BORDER-LEFT: #808080 1px solid; BORDER-BOTTOM: #808080 1px solid; BACKGROUND-COLOR: #ffffff"><img src="http://m.shnenglu.com/Images/dot.gif"></span><span id=Codehighlighter1_185_217_Open_Text><span style="COLOR: #000000">{<br></span><span style="COLOR: #008080">12</span><span style="COLOR: #000000"><img src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" align=top>     </span><span style="COLOR: #0000ff">return</span><span style="COLOR: #000000"> v1</span><span style="COLOR: #000000"><</span><span style="COLOR: #000000">v2</span><span style="COLOR: #000000">?</span><span style="COLOR: #0000ff">true</span><span style="COLOR: #000000">:</span><span style="COLOR: #0000ff">false</span><span style="COLOR: #000000">;<br></span><span style="COLOR: #008080">13</span><span style="COLOR: #000000"><img src="http://m.shnenglu.com/Images/OutliningIndicators/ExpandedBlockEnd.gif" align=top>}</span></span><span style="COLOR: #000000"><br></span><span style="COLOR: #008080">14</span><span style="COLOR: #000000"><img src="http://m.shnenglu.com/Images/OutliningIndicators/None.gif" align=top></span><span style="COLOR: #0000ff">bool</span><span style="COLOR: #000000"> greater_than(</span><span style="COLOR: #0000ff">int</span><span style="COLOR: #000000"> v1,</span><span style="COLOR: #0000ff">int</span><span style="COLOR: #000000"> v2)<br></span><span style="COLOR: #008080">15</span><span style="COLOR: #000000"><img id=Codehighlighter1_252_288_Open_Image onclick="this.style.display='none'; Codehighlighter1_252_288_Open_Text.style.display='none'; Codehighlighter1_252_288_Closed_Image.style.display='inline'; Codehighlighter1_252_288_Closed_Text.style.display='inline';" src="http://m.shnenglu.com/Images/OutliningIndicators/ExpandedBlockStart.gif" align=top><img id=Codehighlighter1_252_288_Closed_Image style="DISPLAY: none" onclick="this.style.display='none'; Codehighlighter1_252_288_Closed_Text.style.display='none'; Codehighlighter1_252_288_Open_Image.style.display='inline'; Codehighlighter1_252_288_Open_Text.style.display='inline';" src="http://m.shnenglu.com/Images/OutliningIndicators/ContractedBlock.gif" align=top></span><span id=Codehighlighter1_252_288_Closed_Text style="BORDER-RIGHT: #808080 1px solid; BORDER-TOP: #808080 1px solid; DISPLAY: none; BORDER-LEFT: #808080 1px solid; BORDER-BOTTOM: #808080 1px solid; BACKGROUND-COLOR: #ffffff"><img src="http://m.shnenglu.com/Images/dot.gif"></span><span id=Codehighlighter1_252_288_Open_Text><span style="COLOR: #000000">{<br></span><span style="COLOR: #008080">16</span><span style="COLOR: #000000"><img src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" align=top>     </span><span style="COLOR: #0000ff">return</span><span style="COLOR: #000000"> v1 </span><span style="COLOR: #000000">></span><span style="COLOR: #000000"> v2 </span><span style="COLOR: #000000">?</span><span style="COLOR: #000000"> </span><span style="COLOR: #0000ff">true</span><span style="COLOR: #000000">:</span><span style="COLOR: #0000ff">false</span><span style="COLOR: #000000">;<br></span><span style="COLOR: #008080">17</span><span style="COLOR: #000000"><img src="http://m.shnenglu.com/Images/OutliningIndicators/ExpandedBlockEnd.gif" align=top>}</span></span><span style="COLOR: #000000"><br></span><span style="COLOR: #008080">18</span><span style="COLOR: #000000"><img src="http://m.shnenglu.com/Images/OutliningIndicators/None.gif" align=top><br></span><span style="COLOR: #008080">19</span><span style="COLOR: #000000"><img src="http://m.shnenglu.com/Images/OutliningIndicators/None.gif" align=top>vector</span><span style="COLOR: #000000"><</span><span style="COLOR: #0000ff">int</span><span style="COLOR: #000000">></span><span style="COLOR: #000000"> filter_ver1(</span><span style="COLOR: #0000ff">const</span><span style="COLOR: #000000"> vector</span><span style="COLOR: #000000"><</span><span style="COLOR: #0000ff">int</span><span style="COLOR: #000000">></span><span style="COLOR: #000000"> </span><span style="COLOR: #000000">&</span><span style="COLOR: #000000">vec,</span><span style="COLOR: #0000ff">int</span><span style="COLOR: #000000"> filter_value,</span><span style="COLOR: #0000ff">bool</span><span style="COLOR: #000000">(</span><span style="COLOR: #000000">*</span><span style="COLOR: #000000">pred)(</span><span style="COLOR: #0000ff">int</span><span style="COLOR: #000000">,</span><span style="COLOR: #0000ff">int</span><span style="COLOR: #000000">))         <br></span><span style="COLOR: #008080">20</span><span style="COLOR: #000000"><img src="http://m.shnenglu.com/Images/OutliningIndicators/None.gif" align=top><br></span><span style="COLOR: #008080">21</span><span style="COLOR: #000000"><img src="http://m.shnenglu.com/Images/OutliningIndicators/None.gif" align=top></span><span style="COLOR: #008000">//</span><span style="COLOR: #008000">涓漢瑙夊緱榪欎釜鍑芥暟璁劇疆寰楀緢濂斤紝鐢ㄥ埌鍑芥暟鎸囬拡浼犻掔浉鍏崇殑鍑芥暟銆傛敞鎰忕浉鍏沖艦鍙傜殑鍖歸厤</span><span style="COLOR: #008000"><br></span><span style="COLOR: #008080">22</span><span style="COLOR: #008000"><img id=Codehighlighter1_427_692_Open_Image onclick="this.style.display='none'; Codehighlighter1_427_692_Open_Text.style.display='none'; Codehighlighter1_427_692_Closed_Image.style.display='inline'; Codehighlighter1_427_692_Closed_Text.style.display='inline';" src="http://m.shnenglu.com/Images/OutliningIndicators/ExpandedBlockStart.gif" align=top><img id=Codehighlighter1_427_692_Closed_Image style="DISPLAY: none" onclick="this.style.display='none'; Codehighlighter1_427_692_Closed_Text.style.display='none'; Codehighlighter1_427_692_Open_Image.style.display='inline'; Codehighlighter1_427_692_Open_Text.style.display='inline';" src="http://m.shnenglu.com/Images/OutliningIndicators/ContractedBlock.gif" align=top></span><span id=Codehighlighter1_427_692_Closed_Text style="BORDER-RIGHT: #808080 1px solid; BORDER-TOP: #808080 1px solid; DISPLAY: none; BORDER-LEFT: #808080 1px solid; BORDER-BOTTOM: #808080 1px solid; BACKGROUND-COLOR: #ffffff"><img src="http://m.shnenglu.com/Images/dot.gif"></span><span id=Codehighlighter1_427_692_Open_Text><span style="COLOR: #000000">{           <br></span><span style="COLOR: #008080">23</span><span style="COLOR: #000000"><img src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" align=top>            vector</span><span style="COLOR: #000000"><</span><span style="COLOR: #0000ff">int</span><span style="COLOR: #000000">></span><span style="COLOR: #000000"> nvec;<br></span><span style="COLOR: #008080">24</span><span style="COLOR: #000000"><img src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" align=top>            </span><span style="COLOR: #0000ff">for</span><span style="COLOR: #000000">(size_t ix </span><span style="COLOR: #000000">=</span><span style="COLOR: #000000"> </span><span style="COLOR: #000000">0</span><span style="COLOR: #000000">;ix </span><span style="COLOR: #000000">!=</span><span style="COLOR: #000000"> vec.size(); </span><span style="COLOR: #000000">++</span><span style="COLOR: #000000">ix)<br></span><span style="COLOR: #008080">25</span><span style="COLOR: #000000"><img src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" align=top>                    </span><span style="COLOR: #0000ff">if</span><span style="COLOR: #000000">(pred(vec [ix],filter_value))            </span><span style="COLOR: #008000">//</span><span style="COLOR: #008000">  璋冪敤鐩稿叧鍑芥暟榪涜鎿嶄綔</span><span style="COLOR: #008000"><br></span><span style="COLOR: #008080">26</span><span style="COLOR: #008000"><img src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" align=top></span><span style="COLOR: #000000">                    nvec.push_back(vec[ix]);           </span><span style="COLOR: #008000">//</span><span style="COLOR: #008000">婊¤凍緇撴灉灝變繚瀛?/span><span style="COLOR: #008000"><br></span><span style="COLOR: #008080">27</span><span style="COLOR: #008000"><img src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" align=top></span><span style="COLOR: #000000">            </span><span style="COLOR: #0000ff">return</span><span style="COLOR: #000000"> nvec;<br></span><span style="COLOR: #008080">28</span><span style="COLOR: #000000"><img src="http://m.shnenglu.com/Images/OutliningIndicators/ExpandedBlockEnd.gif" align=top>}</span></span><span style="COLOR: #000000"><br></span><span style="COLOR: #008080">29</span><span style="COLOR: #000000"><img src="http://m.shnenglu.com/Images/OutliningIndicators/None.gif" align=top></span><span style="COLOR: #0000ff">int</span><span style="COLOR: #000000"> main()<br></span><span style="COLOR: #008080">30</span><span style="COLOR: #000000"><img id=Codehighlighter1_705_1169_Open_Image onclick="this.style.display='none'; Codehighlighter1_705_1169_Open_Text.style.display='none'; Codehighlighter1_705_1169_Closed_Image.style.display='inline'; Codehighlighter1_705_1169_Closed_Text.style.display='inline';" src="http://m.shnenglu.com/Images/OutliningIndicators/ExpandedBlockStart.gif" align=top><img id=Codehighlighter1_705_1169_Closed_Image style="DISPLAY: none" onclick="this.style.display='none'; Codehighlighter1_705_1169_Closed_Text.style.display='none'; Codehighlighter1_705_1169_Open_Image.style.display='inline'; Codehighlighter1_705_1169_Open_Text.style.display='inline';" src="http://m.shnenglu.com/Images/OutliningIndicators/ContractedBlock.gif" align=top></span><span id=Codehighlighter1_705_1169_Closed_Text style="BORDER-RIGHT: #808080 1px solid; BORDER-TOP: #808080 1px solid; DISPLAY: none; BORDER-LEFT: #808080 1px solid; BORDER-BOTTOM: #808080 1px solid; BACKGROUND-COLOR: #ffffff"><img src="http://m.shnenglu.com/Images/dot.gif"></span><span id=Codehighlighter1_705_1169_Open_Text><span style="COLOR: #000000">{   <br></span><span style="COLOR: #008080">31</span><span style="COLOR: #000000"><img src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" align=top>    </span><span style="COLOR: #0000ff">int</span><span style="COLOR: #000000"> value;<br></span><span style="COLOR: #008080">32</span><span style="COLOR: #000000"><img src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" align=top>    vector</span><span style="COLOR: #000000"><</span><span style="COLOR: #0000ff">int</span><span style="COLOR: #000000">></span><span style="COLOR: #000000"> ivec; <br></span><span style="COLOR: #008080">33</span><span style="COLOR: #000000"><img src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" align=top>    cout </span><span style="COLOR: #000000"><<</span><span style="COLOR: #000000">"</span><span style="COLOR: #000000">璇瘋緭鍏ユ暟瀛?  </span><span style="COLOR: #000000">"</span><span style="COLOR: #000000"><<</span><span style="COLOR: #000000">endl;<br></span><span style="COLOR: #008080">34</span><span style="COLOR: #000000"><img src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" align=top>    </span><span style="COLOR: #0000ff">while</span><span style="COLOR: #000000">(cin </span><span style="COLOR: #000000">>></span><span style="COLOR: #000000"> value)<br></span><span style="COLOR: #008080">35</span><span style="COLOR: #000000"><img src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" align=top>    ivec.push_back(value);<br></span><span style="COLOR: #008080">36</span><span style="COLOR: #000000"><img src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" align=top>    cin.clear();             </span><span style="COLOR: #008000">//</span><span style="COLOR: #008000">浣胯緭鍏ユ祦鏈夋晥</span><span style="COLOR: #008000"><br></span><span style="COLOR: #008080">37</span><span style="COLOR: #008000"><img src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" align=top></span><span style="COLOR: #000000">    </span><span style="COLOR: #0000ff">int</span><span style="COLOR: #000000"> ival;<br></span><span style="COLOR: #008080">38</span><span style="COLOR: #000000"><img src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" align=top>    cout</span><span style="COLOR: #000000"><<</span><span style="COLOR: #000000">"</span><span style="COLOR: #000000">璇瘋緭鍏ヤ綘瑕佹瘮杈冩暟瀛楋細 </span><span style="COLOR: #000000">"</span><span style="COLOR: #000000"><<</span><span style="COLOR: #000000">endl;<br></span><span style="COLOR: #008080">39</span><span style="COLOR: #000000"><img src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" align=top>    cin </span><span style="COLOR: #000000">>></span><span style="COLOR: #000000">ival;<br></span><span style="COLOR: #008080">40</span><span style="COLOR: #000000"><img src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" align=top>    vector</span><span style="COLOR: #000000"><</span><span style="COLOR: #0000ff">int</span><span style="COLOR: #000000">></span><span style="COLOR: #000000"> vec</span><span style="COLOR: #000000">=</span><span style="COLOR: #000000">filter_ver1(ivec,ival ,greater_than);  </span><span style="COLOR: #008000">//</span><span style="COLOR: #008000"> 鍑芥暟鐨勮皟鐢?nbsp; 浼犻掑嚱鏁板悕鍗沖彲</span><span style="COLOR: #008000"><br></span><span style="COLOR: #008080">41</span><span style="COLOR: #008000"><img src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" align=top></span><span style="COLOR: #000000">    vector</span><span style="COLOR: #000000"><</span><span style="COLOR: #0000ff">int</span><span style="COLOR: #000000">></span><span style="COLOR: #000000">::iterator it</span><span style="COLOR: #000000">=</span><span style="COLOR: #000000">vec.begin();<br></span><span style="COLOR: #008080">42</span><span style="COLOR: #000000"><img src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" align=top>    </span><span style="COLOR: #0000ff">while</span><span style="COLOR: #000000">(it</span><span style="COLOR: #000000">!=</span><span style="COLOR: #000000"> vec.end())<br></span><span style="COLOR: #008080">43</span><span style="COLOR: #000000"><img src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" align=top>               cout</span><span style="COLOR: #000000"><<*</span><span style="COLOR: #000000">it</span><span style="COLOR: #000000">++<<</span><span style="COLOR: #000000">"</span><span style="COLOR: #000000">  </span><span style="COLOR: #000000">"</span><span style="COLOR: #000000">;<br></span><span style="COLOR: #008080">44</span><span style="COLOR: #000000"><img src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" align=top>               cout</span><span style="COLOR: #000000"><<</span><span style="COLOR: #000000">endl;<br></span><span style="COLOR: #008080">45</span><span style="COLOR: #000000"><img src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" align=top><br></span><span style="COLOR: #008080">46</span><span style="COLOR: #000000"><img src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" align=top>    system(</span><span style="COLOR: #000000">"</span><span style="COLOR: #000000">pause</span><span style="COLOR: #000000">"</span><span style="COLOR: #000000">);<br></span><span style="COLOR: #008080">47</span><span style="COLOR: #000000"><img src="http://m.shnenglu.com/Images/OutliningIndicators/InBlock.gif" align=top>    </span><span style="COLOR: #0000ff">return</span><span style="COLOR: #000000"> </span><span style="COLOR: #000000">0</span><span style="COLOR: #000000">;<br></span><span style="COLOR: #008080">48</span><span style="COLOR: #000000"><img src="http://m.shnenglu.com/Images/OutliningIndicators/ExpandedBlockEnd.gif" align=top>}</span></span></div> <img src ="http://m.shnenglu.com/gxmmrr102/aggbug/78428.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://m.shnenglu.com/gxmmrr102/" target="_blank">寮規澂涓絎?/a> 2009-03-30 23:54 <a href="http://m.shnenglu.com/gxmmrr102/archive/2009/03/30/78428.html#Feedback" target="_blank" style="text-decoration:none;">鍙戣〃璇勮</a></div>]]></description></item></channel></rss> <footer> <div class="friendship-link"> <p>感谢您访问我们的网站,您可能还对以下资源感兴趣:</p> <a href="http://m.shnenglu.com/" title="精品视频久久久久">精品视频久久久久</a> <div class="friend-links"> </div> </div> </footer> <a href="http://www.milliondollarhomepage.cn" target="_blank">99久久这里只精品国产免费</a>| <a href="http://www.shairproperty.cn" target="_blank">久久精品中文闷骚内射</a>| <a href="http://www.shensizxw.cn" target="_blank">久久久精品人妻无码专区不卡</a>| <a href="http://www.cqtqtz.cn" target="_blank">久久se这里只有精品</a>| <a href="http://www.debtee.cn" target="_blank">久久久久久曰本AV免费免费</a>| <a href="http://www.hrbsyyy.cn" target="_blank">99久久精品国产高清一区二区</a>| <a href="http://www.wyj405.cn" target="_blank">国产精品熟女福利久久AV</a>| <a href="http://www.riyuelitian.cn" target="_blank">久久妇女高潮几次MBA</a>| <a href="http://www.pz897.cn" target="_blank">美女写真久久影院</a>| <a href="http://www.010law.cn" target="_blank">伊人久久精品无码av一区</a>| <a href="http://www.92dyy.cn" target="_blank">欧美综合天天夜夜久久</a>| <a href="http://www.nsimple.cn" target="_blank">大香伊人久久精品一区二区</a>| <a href="http://www.wordboy.cn" target="_blank">色成年激情久久综合</a>| <a href="http://www.0592xxw.cn" target="_blank">久久久久久国产精品无码下载</a>| <a href="http://www.hygaiye.cn" target="_blank">久久综合久久综合九色</a>| <a href="http://www.xsdbw.cn" target="_blank">漂亮人妻被黑人久久精品</a>| <a href="http://www.sypt59.cn" target="_blank">理论片午午伦夜理片久久</a>| <a href="http://www.lzhoufugen.cn" target="_blank">欧美亚洲另类久久综合</a>| <a href="http://www.163sms.cn" target="_blank">久久综合狠狠综合久久</a>| <a href="http://www.srdwl.cn" target="_blank">日韩欧美亚洲综合久久 </a>| <a href="http://www.haoq98.cn" target="_blank">久久国产AVJUST麻豆</a>| <a href="http://www.vocard.cn" target="_blank">66精品综合久久久久久久</a>| <a href="http://www.msn56.cn" target="_blank">国产精品国色综合久久</a>| <a href="http://www.sun-yan.cn" target="_blank">日本强好片久久久久久AAA</a>| <a href="http://www.deshizhai.cn" target="_blank">亚洲欧美日韩久久精品</a>| <a href="http://www.cext.cn" target="_blank">亚洲AV伊人久久青青草原</a>| <a href="http://www.wyhwan.cn" target="_blank">久久精品成人</a>| <a href="http://www.zhangyiping.cn" target="_blank">精品久久久久久国产三级</a>| <a href="http://www.qdjybj.cn" target="_blank">久久免费高清视频</a>| <a href="http://www.angcao.cn" target="_blank">精品亚洲综合久久中文字幕</a>| <a href="http://www.wuchui.cn" target="_blank">久久国产精品成人影院</a>| <a href="http://www.su26.cn" target="_blank">久久精品国产亚洲AV香蕉</a>| <a href="http://www.yuzeyuanyi.cn" target="_blank">日本强好片久久久久久AAA</a>| <a href="http://www.macroshot.cn" target="_blank">亚洲αv久久久噜噜噜噜噜</a>| <a href="http://www.santai58.cn" target="_blank">欧美黑人激情性久久</a>| <a href="http://www.sh-tx.cn" target="_blank">国内精品久久久久久久97牛牛</a>| <a href="http://www.bbctp.cn" target="_blank">欧美精品久久久久久久自慰</a>| <a href="http://www.0731car.com.cn" target="_blank">久久综合亚洲欧美成人</a>| <a href="http://www.988o.cn" target="_blank">久久96国产精品久久久</a>| <a href="http://www.vfpo.cn" target="_blank">欧美一区二区精品久久</a>| <a href="http://www.366509.cn" target="_blank">免费一级欧美大片久久网</a>| <script> (function(){ var bp = document.createElement('script'); var curProtocol = window.location.protocol.split(':')[0]; if (curProtocol === 'https') { bp.src = 'https://zz.bdstatic.com/linksubmit/push.js'; } else { bp.src = 'http://push.zhanzhang.baidu.com/push.js'; } var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(bp, s); })(); </script> </body>