锘??xml version="1.0" encoding="utf-8" standalone="yes"?>最新久久免费视频,国产精品亚洲美女久久久,99精品伊人久久久大香线蕉http://www.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://www.shnenglu.com/gxmmrr102/archive/2009/05/21/83610.html</link><dc:creator>寮規(guī)澂涓絎?/dc:creator><author>寮規(guī)澂涓絎?/author><pubDate>Thu, 21 May 2009 14:19:00 GMT</pubDate><guid>http://www.shnenglu.com/gxmmrr102/archive/2009/05/21/83610.html</guid><wfw:comment>http://www.shnenglu.com/gxmmrr102/comments/83610.html</wfw:comment><comments>http://www.shnenglu.com/gxmmrr102/archive/2009/05/21/83610.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.shnenglu.com/gxmmrr102/comments/commentRss/83610.html</wfw:commentRss><trackback:ping>http://www.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://www.shnenglu.com/gxmmrr102/aggbug/83610.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.shnenglu.com/gxmmrr102/" target="_blank">寮規(guī)澂涓絎?/a> 2009-05-21 22:19 <a href="http://www.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://www.shnenglu.com/gxmmrr102/archive/2009/05/12/82663.html寮規(guī)澂涓絎?/dc:creator>寮規(guī)澂涓絎?/author>Tue, 12 May 2009 02:44:00 GMThttp://www.shnenglu.com/gxmmrr102/archive/2009/05/12/82663.htmlhttp://www.shnenglu.com/gxmmrr102/comments/82663.htmlhttp://www.shnenglu.com/gxmmrr102/archive/2009/05/12/82663.html#Feedback0http://www.shnenglu.com/gxmmrr102/comments/commentRss/82663.htmlhttp://www.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://www.shnenglu.com/gxmmrr102/archive/2009/04/01/78615.html寮規(guī)澂涓絎?/dc:creator>寮規(guī)澂涓絎?/author>Wed, 01 Apr 2009 15:17:00 GMThttp://www.shnenglu.com/gxmmrr102/archive/2009/04/01/78615.htmlhttp://www.shnenglu.com/gxmmrr102/comments/78615.htmlhttp://www.shnenglu.com/gxmmrr102/archive/2009/04/01/78615.html#Feedback0http://www.shnenglu.com/gxmmrr102/comments/commentRss/78615.htmlhttp://www.shnenglu.com/gxmmrr102/services/trackbacks/78615.html闃呰鍏ㄦ枃

]]>
濡備綍璁捐涓涓寖鍨嬬畻娉?/title><link>http://www.shnenglu.com/gxmmrr102/archive/2009/03/30/78428.html</link><dc:creator>寮規(guī)澂涓絎?/dc:creator><author>寮規(guī)澂涓絎?/author><pubDate>Mon, 30 Mar 2009 15:54:00 GMT</pubDate><guid>http://www.shnenglu.com/gxmmrr102/archive/2009/03/30/78428.html</guid><wfw:comment>http://www.shnenglu.com/gxmmrr102/comments/78428.html</wfw:comment><comments>http://www.shnenglu.com/gxmmrr102/archive/2009/03/30/78428.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.shnenglu.com/gxmmrr102/comments/commentRss/78428.html</wfw:commentRss><trackback:ping>http://www.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://www.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://www.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://www.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://www.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://www.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://www.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://www.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://www.shnenglu.com/Images/OutliningIndicators/InBlock.gif" align=top>* 姝ゅ浠呭啓浜嗗皬浜庡拰澶т簬鍑芥暟   鍏朵粬鐨勪緷嬈$被鎺ㄣ?br></span><span style="COLOR: #008080"> 8</span><span style="COLOR: #008000"><img src="http://www.shnenglu.com/Images/OutliningIndicators/InBlock.gif" align=top>* 娉ㄦ剰鍙傛暟 涓庢寚閽堝嚱鏁扮殑鍖歸厤<br></span><span style="COLOR: #008080"> 9</span><span style="COLOR: #008000"><img src="http://www.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://www.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://www.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://www.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://www.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://www.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://www.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://www.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://www.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://www.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://www.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://www.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://www.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://www.shnenglu.com/Images/OutliningIndicators/None.gif" align=top><br></span><span style="COLOR: #008080">19</span><span style="COLOR: #000000"><img src="http://www.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://www.shnenglu.com/Images/OutliningIndicators/None.gif" align=top><br></span><span style="COLOR: #008080">21</span><span style="COLOR: #000000"><img src="http://www.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://www.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://www.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://www.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://www.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://www.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://www.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://www.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://www.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://www.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://www.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://www.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://www.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://www.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://www.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://www.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://www.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://www.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://www.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://www.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://www.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://www.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://www.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://www.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://www.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://www.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://www.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://www.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://www.shnenglu.com/Images/OutliningIndicators/InBlock.gif" align=top><br></span><span style="COLOR: #008080">46</span><span style="COLOR: #000000"><img src="http://www.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://www.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://www.shnenglu.com/Images/OutliningIndicators/ExpandedBlockEnd.gif" align=top>}</span></span></div> <img src ="http://www.shnenglu.com/gxmmrr102/aggbug/78428.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.shnenglu.com/gxmmrr102/" target="_blank">寮規(guī)澂涓絎?/a> 2009-03-30 23:54 <a href="http://www.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://www.shnenglu.com/" title="精品视频久久久久">精品视频久久久久</a> <div class="friend-links"> </div> </div> </footer> <a href="http://www.onlymir.cn" target="_blank">久久久久久a亚洲欧洲aⅴ</a>| <a href="http://www.ttprinting.cn" target="_blank">77777亚洲午夜久久多喷</a>| <a href="http://www.c825.cn" target="_blank">97超级碰碰碰久久久久</a>| <a href="http://www.zmlxs.cn" target="_blank">开心久久婷婷综合中文字幕</a>| <a href="http://www.10711.com.cn" target="_blank">久久精品国产网红主播</a>| <a href="http://www.sxweishang.cn" target="_blank">久久人人爽人人爽人人片AV东京热 </a>| <a href="http://www.hbguangtao.cn" target="_blank">蜜臀av性久久久久蜜臀aⅴ麻豆</a>| <a href="http://www.lxgit.cn" target="_blank">国产午夜精品久久久久九九电影</a>| <a href="http://www.cqhthj.com.cn" target="_blank">午夜欧美精品久久久久久久</a>| <a href="http://www.xjyjd.cn" target="_blank">中文字幕日本人妻久久久免费</a>| <a href="http://www.gsm1.com.cn" target="_blank">四虎国产精品免费久久</a>| <a href="http://www.99yingyuan.cn" target="_blank">色综合久久综精品</a>| <a href="http://www.ycs8.cn" target="_blank">热久久视久久精品18</a>| <a href="http://www.shy114.cn" target="_blank">欧美激情精品久久久久久久九九九 </a>| <a href="http://www.szksc.cn" target="_blank">日韩欧美亚洲综合久久 </a>| <a href="http://www.sdlove.cn" target="_blank">国产产无码乱码精品久久鸭</a>| <a href="http://www.corporateavenue.cn" target="_blank">狠狠88综合久久久久综合网</a>| <a href="http://www.9527dm.cn" target="_blank">欧美久久一区二区三区</a>| <a href="http://www.hljfucai.cn" target="_blank">偷窥少妇久久久久久久久</a>| <a href="http://www.zghzmj.com.cn" target="_blank">久久久久97国产精华液好用吗</a>| <a href="http://www.kottbac.cn" target="_blank">久久天天躁狠狠躁夜夜2020</a>| <a href="http://www.fz-tm.cn" target="_blank">中文字幕久久久久人妻</a>| <a href="http://www.hywsgc.cn" target="_blank">久久久久人妻精品一区 </a>| <a href="http://www.sa88.cn" target="_blank">伊人丁香狠狠色综合久久</a>| <a href="http://www.txhyhf.cn" target="_blank">久久综合狠狠色综合伊人</a>| <a href="http://www.vyipin.cn" target="_blank">久久久久国色AV免费看图片</a>| <a href="http://www.tzcn86.cn" target="_blank">亚洲精品无码成人片久久</a>| <a href="http://www.68360.cn" target="_blank">国产精品福利一区二区久久</a>| <a href="http://www.yinyue580.cn" target="_blank">精品一区二区久久</a>| <a href="http://www.wcxkmm.cn" target="_blank">99久久精品免费看国产一区二区三区</a>| <a href="http://www.wz65.cn" target="_blank">99re这里只有精品热久久</a>| <a href="http://www.23d6.cn" target="_blank">久久精品国产男包</a>| <a href="http://www.debtee.cn" target="_blank">国内精品久久久久久久coent</a>| <a href="http://www.vjyg.cn" target="_blank">亚洲va中文字幕无码久久</a>| <a href="http://www.30ww.cn" target="_blank">欧美午夜A∨大片久久</a>| <a href="http://www.athj.cn" target="_blank">久久91精品久久91综合</a>| <a href="http://www.1104f.cn" target="_blank">久久丫精品国产亚洲av不卡</a>| <a href="http://www.918gn.cn" target="_blank">热99RE久久精品这里都是精品免费</a>| <a href="http://www.czyhq.cn" target="_blank">99久久精品九九亚洲精品</a>| <a href="http://www.girdlenet.cn" target="_blank">久久精品中文闷骚内射</a>| <a href="http://www.238000.com.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>