<output id="qn6qe"></output>

    1. <output id="qn6qe"><tt id="qn6qe"></tt></output>
    2. <strike id="qn6qe"></strike>

      亚洲 日本 欧洲 欧美 视频,日韩中文字幕有码av,一本一道av中文字幕无码,国产线播放免费人成视频播放,人妻少妇偷人无码视频,日夜啪啪一区二区三区,国产尤物精品自在拍视频首页,久热这里只有精品12

      2024.5.22 閑話

      See You Again
      It's been a long day without you my friend
      
      And I'll tell you all about it when I see you again
      
      We've come a long way from where we began
      
      Oh I'll tell you all about it when I see you again
      
      When I see you again
      
      Wiz Khalifa:
      
      D**n who knew
      
      All the planes we flew
      
      Good things we been through
      
      That I'd be standing right here talking to you
      
      'Bout another path
      
      I know we loved to hit the road and laugh
      
      But something told me that it wouldn't last
      
      Had to switch up look at things different see the bigger picture
      
      Those were the days hard work forever pays
      
      Now I see you in a better place
      
      See you in a better place
      
      Uh
      
      How could we not talk about family when family's all that we got
      
      Everything I went through
      
      You were standing there by my side
      
      And now you gon' be with me for the last ride
      
      Charlie Puth/Wiz Khalifa:
      
      It's been a long day without you my friend
      
      And I'll tell you all about it when I see you again
      
      I'll see you again
      
      We've come a long way
      
      Yeah we came a long way
      
      From where we began
      
      You know we started
      
      Oh
      
      I'll tell you all about it when I see you again
      
      I'll tell you
      
      When I see you again
      
      Charlie Puth:
      
      Aah oh aah oh
      
      Wooooh-oh-oh-oh-oh-oh
      
      Yeah
      
      Wiz Khalifa:
      
      First you both go out your way and the vibe is feeling strong
      
      And what's small turned to a friendship
      
      A friendship turned to a bond
      
      And that bond will never be broken
      
      The love will never get lost
      
      The love will never get lost
      
      And when brotherhood come first
      
      Then the line will never be crossed
      
      Established it on our own when that line had to be drawn
      
      And that line is what we reached so remember me when I'm gone
      
      Remember me when I'm gone
      
      Wiz Khalifa:
      
      How could we not talk about family when family's all that we got
      
      Everything I went through you were standing there by my side
      
      And now you gon' be with me for the last ride
      
      Charlie Puth:
      
      So let the light guide your way yeah
      
      Hold every memory as you go
      
      And every road you take
      
      Will always lead you home home
      
      It's been a long day without you my friend
      
      And I'll tell you all about it when I see you again
      
      We've come a long way from where we began
      
      Oh I'll tell you all about it when I see you again
      
      When I see you again
      
      Charlie Puth/Wiz Khalifa:
      
      Aah oh aah oh
      
      Uh
      
      Yeah
      
      Yeah
      
      Wooooh-oh-oh-oh-oh-oh
      
      Yo
      
      When I see you again
      
      Yo uh
      
      See you again
      
      Yo yo
      
      Oh-oh
      
      Uh-huh
      
      Yup
      
      When I see you again
      

      第一篇閑話。

      起因是調錯保留位數調了 1h-

      然后寫這個寫了 2h+

      其實主要是想吧目錄撐起來

      括號里面是傳參。

      有的有 std:: 前綴,是因為和變量名沖突會優先調用變量。

      實在怕沖突可以都加上。

      沒說的修改大概都永久有效,沒說 \(yes/no\) 的默認 no

      cin cout 語法唐氏:

      cin

      無特殊說明用法都是 cin.xxx(xxx)

      1. setw(int) 用于分塊輸入和限制輸入長度(只設置下一個)。

        用法 cin>>setw(int)>>xxx;

      2. peek() 窺探下一個字符,但不讀入。

      3. putback(char)char 再放輸入緩存(可以再讀),很玄學,沒搞懂,兩次讀取之間只放一個字符比較穩,不然可能寄。

      4. unget() 撤銷上一次字符的讀入,只撤銷一個字符,可多次使用(不要越界)。

      5. gcount() 返回上次讀入字符數量,會被大多數修改(包括 unget() 等)改變或清空。

      6. std::ws 清除所有前綴空白字符,一般用于 cin 后接 getline 時用 getline(cin>>std::ws,xxx) 避免讀入空白和回車。

        用法 cin>>std::ws;

      7. get() 讀入一個字符,早期沒有 char 時用于讀入 '7' 等 。

      8. get(char*,int) 和下面的 cin.getline 差不多,因為沒有越界檢查,建議用下面的。

      9. getline(char*,int)cin.getline 哦,用于讀入字符數組,int 是長度,和 getline 一樣不會忽略前綴空白字符。

      10. read(char*,int) 一直讀入,直到讀了 int 個或到文件尾。

      11. std::hex,std::dec,std::oct 分別當做 \(16,10,8\) 讀入整數,也可以直接用 setbase(int)int\(16,10,8\) 否則無效,默認 dec

        用法 cin>>std::hex; cin>>setbase(16);

      12. (no)skipws 是否跳過空白字符,默認 \(yes\)

        用法 cin>>skipws;

      13. quoted(string,char1,char2) 用于讀入帶分隔字符的字符串:

        string 讀入串。

        char 分隔符,默認 "

        char2 轉義符,默認 \

        用法 cin>>quoted(xxx,xxx,xxx)

        例子
        #include <bits/stdc++.h>
        using namespace std;
        
        int main() {
        	string a;
        	cin >> quoted(a);
        	cout << a;
        }
        

        \(input\):

        "this is a string, we can \"read\" it.
        and it can in many lines."

        \(output\):

        this is a string, we can "read" it
        and it can in many lines.

      更多可以參考 https://zh.cppreference.com/w/cpp/io/basic_istream

      cout

      無說明用法都是 cout<<xxx

      1. std::hex,std::dec,std::oct,setbase(int)cin
      2. (no)showbase 在輸出 \(16,8\) 進制時是否輸出 0x0
      3. (no)showpoint 設置是否輸出小數點后省略的末尾 \(0\)
      4. (no)uppercase 輸出大(小)寫,指 0X2F5 (十六進制數)之類的
      5. (no)unitbuf 設置是否自動 flush
      6. setprecision(int) 設置浮點精度,具體以浮點數格式為準
      7. fixed 設置浮點數格式為定點(會保留到小數點后 setprecision(int) 位,且不去末尾 \(0\)
      8. scientific 設置浮點數格式為科學計數法(轉為科學計數法后保留到小數點后 setprecision(int) 位,且不去末尾 \(0\)
      9. hexfloat\(16\) 進制輸出浮點數(沒有 \(8\) 進制),會忽略其他對浮點數的指定,包括 setprecision(int)
      10. defaultfloat 浮點數格式返回默認值,總共保留 setprecision(int) 位有效數字(包括整數位),去除末尾 \(0\)
      11. setw 設置寬度(只設置下一個)。
      12. setfill(char) 設置在寬度不滿時的填充字符。
      13. std::left,std::right,std::internal 控制左,右,標號在左(如 0x)數字在右,默認 right
      14. resetiosflags 重置,參數可傳:
        1. ios::basefield 重置整數進制。
        2. ios::floatfield 重置浮點數格式。
        3. ios::adjustfield 重置對齊。
      15. get_money/put_money/get_time/put_time 解析、輸出貨幣、時間(不會用)。
      16. quoted(string,char,char)cin

      更多可以參考 https://zh.cppreference.com/w/cpp/io/basic_ostream

      求教教怎么放歌詞

      posted @ 2024-05-22 15:17  xrlong  閱讀(83)  評論(4)    收藏  舉報

      Loading

      主站蜘蛛池模板: 妺妺窝人体色www婷婷| 亚洲男女羞羞无遮挡久久丫| 看全色黄大黄大色免费久久| 内射毛片内射国产夫妻| 亚洲五月天一区二区三区| 亚洲色一色噜一噜噜噜| 97久久超碰亚洲视觉盛宴| 色综合久久夜色精品国产| 无码欧美毛片一区二区三| 日韩无专区精品中文字幕| 亚洲第一综合天堂另类专| 日韩不卡二区三区三区四区| 婷婷久久香蕉五月综合加勒比 | 尹人香蕉久久99天天拍欧美p7| 毛片内射久久久一区| 亚洲一区二区三区 无码| 粉嫩av蜜臀一区二区三区| 人人妻人人狠人人爽天天综合网| 玩弄漂亮少妇高潮白浆| 国产精品成人综合色在线| 国产av无码专区亚洲aⅴ| 狠狠v日韩v欧美v| 国产成人综合久久久久久| 国产真正老熟女无套内射| 亚洲色一区二区三区四区| 中文字幕成人精品久久不卡| 久久亚洲国产五月综合网| 人妻系列中文字幕精品| 自拍视频亚洲精品在线| 国产av不卡一区二区| 国产成人一区二区三区免费| 亚洲国产精品线观看不卡| 又大又硬又爽免费视频| 中文字幕人妻丝袜美腿乱| 汉川市| 日韩中文字幕亚洲精品| 亚洲国产成人精品av区按摩| 欧美丰满妇大ass| 精品久久久久无码| 夜夜躁狠狠躁2021| 亚洲国产精品一区第二页|