亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? xcomplex

?? C標準庫源代碼,能提高對C的理解,不錯的哦
??
?? 第 1 頁 / 共 2 頁
字號:
			return (_CMPLX(_Ty)(-imag(_X) / (2 * _Rho), -_Rho));
		else
			return (_CMPLX(_Ty)(imag(_X) / (2 * _Rho),
				_Rho)); }}

#ifdef _DLL
#ifndef CRTDLL2
#pragma warning(disable:4231) /* the extern before template is a non-standard extension */

extern template _CRTIMP2 complex<float>& __cdecl operator+=(
        complex<float>&, const complex<float>&);
extern template _CRTIMP2 complex<float>& __cdecl operator-=(
        complex<float>&, const complex<float>&);
extern template _CRTIMP2 complex<float>& __cdecl operator*=(
        complex<float>&, const complex<float>&);
extern template _CRTIMP2 complex<float>& __cdecl operator/=(
        complex<float>&, const complex<float>&);

extern template _CRTIMP2 basic_istream<char, char_traits<char> >& __cdecl operator>>(
        basic_istream<char, char_traits<char> >&, complex<float>&);
extern template _CRTIMP2 basic_ostream<char, char_traits<char> >& __cdecl operator<<(
        basic_ostream<char, char_traits<char> >&, const complex<float>&);
extern template _CRTIMP2 basic_istream<wchar_t, char_traits<wchar_t> >& __cdecl operator>>(
        basic_istream<wchar_t, char_traits<wchar_t> >&, complex<float>&);
extern template _CRTIMP2 basic_ostream<wchar_t, char_traits<wchar_t> >& __cdecl operator<<(
        basic_ostream<wchar_t, char_traits<wchar_t> >&, const complex<float>&);

extern template _CRTIMP2 complex<double>& __cdecl operator+=(
        complex<double>&, const complex<double>&);
extern template _CRTIMP2 complex<double>& __cdecl operator-=(
        complex<double>&, const complex<double>&);
extern template _CRTIMP2 complex<double>& __cdecl operator*=(
        complex<double>&, const complex<double>&);
extern template _CRTIMP2 complex<double>& __cdecl operator/=(
        complex<double>&, const complex<double>&);
extern template _CRTIMP2 basic_istream<char, char_traits<char> >& __cdecl operator>>(
        basic_istream<char, char_traits<char> >&, complex<double>&);
extern template _CRTIMP2 basic_ostream<char, char_traits<char> >& __cdecl operator<<(
        basic_ostream<char, char_traits<char> >&, const complex<double>&);
extern template _CRTIMP2 basic_istream<wchar_t, char_traits<wchar_t> >& __cdecl operator>>(
        basic_istream<wchar_t, char_traits<wchar_t> >&, complex<double>&);
extern template _CRTIMP2 basic_ostream<wchar_t, char_traits<wchar_t> >& __cdecl operator<<(
        basic_ostream<wchar_t, char_traits<wchar_t> >&, const complex<double>&);

extern template _CRTIMP2 complex<long double>& __cdecl operator+=(
        complex<long double>&, const complex<long double>&);
extern template _CRTIMP2 complex<long double>& __cdecl operator-=(
        complex<long double>&, const complex<long double>&);
extern template _CRTIMP2 complex<long double>& __cdecl operator*=(
        complex<long double>&, const complex<long double>&);
extern template _CRTIMP2 complex<long double>& __cdecl operator/=(
        complex<long double>&, const complex<long double>&);
extern template _CRTIMP2 basic_istream<char, char_traits<char> >& __cdecl operator>>(
        basic_istream<char, char_traits<char> >&, complex<long double>&);
extern template _CRTIMP2 basic_ostream<char, char_traits<char> >& __cdecl operator<<(
        basic_ostream<char, char_traits<char> >&, const complex<long double>&);
extern template _CRTIMP2 basic_istream<wchar_t, char_traits<wchar_t> >& __cdecl operator>>(
        basic_istream<wchar_t, char_traits<wchar_t> >&, complex<long double>&);
extern template _CRTIMP2 basic_ostream<wchar_t, char_traits<wchar_t> >& __cdecl operator<<(
        basic_ostream<wchar_t, char_traits<wchar_t> >&, const complex<long double>&);

extern template _CRTIMP2 float __cdecl imag(const complex<float>&);
extern template _CRTIMP2 float __cdecl real(const complex<float>&);
extern template _CRTIMP2 float __cdecl _Fabs(const complex<float>&, int *);
extern template _CRTIMP2 complex<float> __cdecl operator+(
        const complex<float>&, const complex<float>&);
extern template _CRTIMP2 complex<float> __cdecl operator+(
        const complex<float>&, const float&);
extern template _CRTIMP2 complex<float> __cdecl operator+(
        const float&, const complex<float>&);
extern template _CRTIMP2 complex<float> __cdecl operator-(
        const complex<float>&, const complex<float>&);
extern template _CRTIMP2 complex<float> __cdecl operator-(
        const complex<float>&, const float&);
extern template _CRTIMP2    complex<float> __cdecl operator-(
        const float&, const complex<float>&);
extern template _CRTIMP2 complex<float> __cdecl operator*(
        const complex<float>&, const complex<float>&);
extern template _CRTIMP2 complex<float> __cdecl operator*(
        const complex<float>&, const float&);
extern template _CRTIMP2 complex<float> __cdecl operator*(
        const float&, const complex<float>&);
extern template _CRTIMP2 complex<float> __cdecl operator/(
        const complex<float>&, const complex<float>&);
extern template _CRTIMP2 complex<float> __cdecl operator/(
        const complex<float>&, const float&);
extern template _CRTIMP2 complex<float> __cdecl operator/(
        const float&, const complex<float>&);
extern template _CRTIMP2 complex<float> __cdecl operator+(
        const complex<float>&);
extern template _CRTIMP2 complex<float> __cdecl operator-(
        const complex<float>&);
extern template _CRTIMP2 bool __cdecl operator==(
        const complex<float>&, const complex<float>&);
extern template _CRTIMP2 bool __cdecl operator==(
        const complex<float>&, const float&);
extern template _CRTIMP2 bool __cdecl operator==(
        const float&, const complex<float>&);
extern template _CRTIMP2 bool __cdecl operator!=(
        const complex<float>&, const complex<float>&);
extern template _CRTIMP2 bool __cdecl operator!=(
        const complex<float>&, const float&);
extern template _CRTIMP2 bool __cdecl operator!=(
        const float&, const complex<float>&);
extern template _CRTIMP2 float __cdecl abs(const complex<float>&);
extern template _CRTIMP2 float __cdecl arg(const complex<float>&);
extern template _CRTIMP2 complex<float> __cdecl conj(const complex<float>&);
extern template _CRTIMP2 complex<float> __cdecl cos(const complex<float>&);
extern template _CRTIMP2 complex<float> __cdecl cosh(const complex<float>&);
extern template _CRTIMP2 complex<float> __cdecl exp(const complex<float>&);
extern template _CRTIMP2 complex<float> __cdecl log(const complex<float>&);
extern template _CRTIMP2 complex<float> __cdecl log10(const complex<float>&);
extern template _CRTIMP2 float __cdecl norm(const complex<float>&);
extern template _CRTIMP2 complex<float> __cdecl polar(const float&, const float&);
extern template _CRTIMP2 complex<float> __cdecl polar(const float&);
extern template _CRTIMP2 complex<float> __cdecl pow(
        const complex<float>&, const complex<float>&);
extern template _CRTIMP2 complex<float> __cdecl pow(
        const complex<float>&, const float&);
extern template _CRTIMP2 complex<float> __cdecl pow(
        const complex<float>&, int);
extern template _CRTIMP2 complex<float> __cdecl pow(
        const float&, const complex<float>&);
extern template _CRTIMP2 complex<float> __cdecl sin(const complex<float>&);
extern template _CRTIMP2 complex<float> __cdecl sinh(const complex<float>&);
extern template _CRTIMP2 complex<float> __cdecl sqrt(const complex<float>&);

extern template _CRTIMP2 double __cdecl imag(const complex<double>&);
extern template _CRTIMP2 double __cdecl real(const complex<double>&);
extern template _CRTIMP2 double __cdecl _Fabs(const complex<double>&, int *);
extern template _CRTIMP2 complex<double> __cdecl operator+(
        const complex<double>&, const complex<double>&);
extern template _CRTIMP2 complex<double> __cdecl operator+(
        const complex<double>&, const double&);
extern template _CRTIMP2 complex<double> __cdecl operator+(
        const double&, const complex<double>&);
extern template _CRTIMP2 complex<double> __cdecl operator-(
        const complex<double>&, const complex<double>&);
extern template _CRTIMP2 complex<double> __cdecl operator-(
        const complex<double>&, const double&);
extern template _CRTIMP2    complex<double> __cdecl operator-(
        const double&, const complex<double>&);
extern template _CRTIMP2 complex<double> __cdecl operator*(
        const complex<double>&, const complex<double>&);
extern template _CRTIMP2 complex<double> __cdecl operator*(
        const complex<double>&, const double&);
extern template _CRTIMP2 complex<double> __cdecl operator*(
        const double&, const complex<double>&);
extern template _CRTIMP2 complex<double> __cdecl operator/(
        const complex<double>&, const complex<double>&);
extern template _CRTIMP2 complex<double> __cdecl operator/(
        const complex<double>&, const double&);
extern template _CRTIMP2 complex<double> __cdecl operator/(
        const double&, const complex<double>&);
extern template _CRTIMP2 complex<double> __cdecl operator+(
        const complex<double>&);
extern template _CRTIMP2 complex<double> __cdecl operator-(
        const complex<double>&);
extern template _CRTIMP2 bool __cdecl operator==(
        const complex<double>&, const complex<double>&);
extern template _CRTIMP2 bool __cdecl operator==(
        const complex<double>&, const double&);
extern template _CRTIMP2 bool __cdecl operator==(
        const double&, const complex<double>&);
extern template _CRTIMP2 bool __cdecl operator!=(
        const complex<double>&, const complex<double>&);
extern template _CRTIMP2 bool __cdecl operator!=(
        const complex<double>&, const double&);
extern template _CRTIMP2 bool __cdecl operator!=(
        const double&, const complex<double>&);
extern template _CRTIMP2 double __cdecl abs(const complex<double>&);
extern template _CRTIMP2 double __cdecl arg(const complex<double>&);
extern template _CRTIMP2 complex<double> __cdecl conj(const complex<double>&);
extern template _CRTIMP2 complex<double> __cdecl cos(const complex<double>&);
extern template _CRTIMP2 complex<double> __cdecl cosh(const complex<double>&);
extern template _CRTIMP2 complex<double> __cdecl exp(const complex<double>&);
extern template _CRTIMP2 complex<double> __cdecl log(const complex<double>&);
extern template _CRTIMP2 complex<double> __cdecl log10(const complex<double>&);
extern template _CRTIMP2 double __cdecl norm(const complex<double>&);
extern template _CRTIMP2 complex<double> __cdecl polar(const double&, const double&);
extern template _CRTIMP2 complex<double> __cdecl polar(const double&);
extern template _CRTIMP2 complex<double> __cdecl pow(
        const complex<double>&, const complex<double>&);
extern template _CRTIMP2 complex<double> __cdecl pow(
        const complex<double>&, const double&);
extern template _CRTIMP2 complex<double> __cdecl pow(
        const complex<double>&, int);
extern template _CRTIMP2 complex<double> __cdecl pow(
        const double&, const complex<double>&);
extern template _CRTIMP2 complex<double> __cdecl sin(const complex<double>&);
extern template _CRTIMP2 complex<double> __cdecl sinh(const complex<double>&);
extern template _CRTIMP2 complex<double> __cdecl sqrt(const complex<double>&);

extern template _CRTIMP2 long double __cdecl imag(const complex<long double>&);
extern template _CRTIMP2 long double __cdecl real(const complex<long double>&);
extern template _CRTIMP2 long double __cdecl _Fabs(const complex<long double>&, int *);
extern template _CRTIMP2 complex<long double> __cdecl operator+(
        const complex<long double>&, const complex<long double>&);
extern template _CRTIMP2 complex<long double> __cdecl operator+(
        const complex<long double>&, const long double&);
extern template _CRTIMP2 complex<long double> __cdecl operator+(
        const long double&, const complex<long double>&);
extern template _CRTIMP2 complex<long double> __cdecl operator-(
        const complex<long double>&, const complex<long double>&);
extern template _CRTIMP2 complex<long double> __cdecl operator-(
        const complex<long double>&, const long double&);
extern template _CRTIMP2    complex<long double> __cdecl operator-(
        const long double&, const complex<long double>&);
extern template _CRTIMP2 complex<long double> __cdecl operator*(
        const complex<long double>&, const complex<long double>&);
extern template _CRTIMP2 complex<long double> __cdecl operator*(
        const complex<long double>&, const long double&);
extern template _CRTIMP2 complex<long double> __cdecl operator*(
        const long double&, const complex<long double>&);
extern template _CRTIMP2 complex<long double> __cdecl operator/(
        const complex<long double>&, const complex<long double>&);
extern template _CRTIMP2 complex<long double> __cdecl operator/(
        const complex<long double>&, const long double&);
extern template _CRTIMP2 complex<long double> __cdecl operator/(
        const long double&, const complex<long double>&);
extern template _CRTIMP2 complex<long double> __cdecl operator+(
        const complex<long double>&);
extern template _CRTIMP2 complex<long double> __cdecl operator-(
        const complex<long double>&);
extern template _CRTIMP2 bool __cdecl operator==(
        const complex<long double>&, const complex<long double>&);
extern template _CRTIMP2 bool __cdecl operator==(
        const complex<long double>&, const long double&);
extern template _CRTIMP2 bool __cdecl operator==(
        const long double&, const complex<long double>&);
extern template _CRTIMP2 bool __cdecl operator!=(
        const complex<long double>&, const complex<long double>&);
extern template _CRTIMP2 bool __cdecl operator!=(
        const complex<long double>&, const long double&);
extern template _CRTIMP2 bool __cdecl operator!=(
        const long double&, const complex<long double>&);
extern template _CRTIMP2 long double __cdecl abs(const complex<long double>&);
extern template _CRTIMP2 long double __cdecl arg(const complex<long double>&);
extern template _CRTIMP2 complex<long double> __cdecl conj(const complex<long double>&);
extern template _CRTIMP2 complex<long double> __cdecl cos(const complex<long double>&);
extern template _CRTIMP2 complex<long double> __cdecl cosh(const complex<long double>&);
extern template _CRTIMP2 complex<long double> __cdecl exp(const complex<long double>&);
extern template _CRTIMP2 complex<long double> __cdecl log(const complex<long double>&);
extern template _CRTIMP2 complex<long double> __cdecl log10(const complex<long double>&);
extern template _CRTIMP2 long double __cdecl norm(const complex<long double>&);
extern template _CRTIMP2 complex<long double> __cdecl polar(const long double&, const long double&);
extern template _CRTIMP2 complex<long double> __cdecl polar(const long double&);
extern template _CRTIMP2 complex<long double> __cdecl pow(
        const complex<long double>&, const complex<long double>&);
extern template _CRTIMP2 complex<long double> __cdecl pow(
        const complex<long double>&, const long double&);
extern template _CRTIMP2 complex<long double> __cdecl pow(
        const complex<long double>&, int);
extern template _CRTIMP2 complex<long double> __cdecl pow(
        const long double&, const complex<long double>&);
extern template _CRTIMP2 complex<long double> __cdecl sin(const complex<long double>&);
extern template _CRTIMP2 complex<long double> __cdecl sinh(const complex<long double>&);
extern template _CRTIMP2 complex<long double> __cdecl sqrt(const complex<long double>&);

#pragma warning(default:4231) /* restore previous warning */
#endif		// CRTDLL2
#endif		// _DLL

#endif          /* _XCOMPLEX */

/*
 * Copyright (c) 1996 by P.J. Plauger.  ALL RIGHTS RESERVED. 
 * Consult your license regarding permissions and restrictions.
 */

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美视频精品在线| 3d动漫精品啪啪一区二区竹菊| 免费三级欧美电影| 日韩在线观看一区二区| 亚洲最大的成人av| 日韩vs国产vs欧美| 蜜臀av一级做a爰片久久| 精品一区二区三区在线播放| 国产自产高清不卡| 99久久国产综合色|国产精品| av动漫一区二区| 色婷婷综合久久久中文一区二区 | 99久久精品国产网站| 99在线精品一区二区三区| 在线亚洲人成电影网站色www| 精品视频在线看| 日韩午夜在线播放| 欧美极品xxx| 亚洲狠狠爱一区二区三区| 人人狠狠综合久久亚洲| 国产一区在线视频| 91猫先生在线| 日韩欧美一级片| 国产精品麻豆一区二区| 亚洲国产日韩av| 激情综合色播五月| 色综合色狠狠综合色| 8v天堂国产在线一区二区| 国产偷国产偷精品高清尤物| 中文字幕一区二区三区四区不卡| 国产精品成人一区二区三区夜夜夜| 亚洲三级免费观看| 亚洲国产精品视频| 久久99久久久欧美国产| 暴力调教一区二区三区| 欧美日韩在线精品一区二区三区激情| 欧美一级在线免费| 国产精品久久99| 日本怡春院一区二区| 成人午夜视频免费看| 欧美调教femdomvk| 久久久精品黄色| 亚洲一区成人在线| 国产成人亚洲精品青草天美| 91啪九色porn原创视频在线观看| 欧美日韩免费在线视频| 国产色综合久久| 亚洲成av人片在线| 国产福利91精品一区二区三区| 色综合天天视频在线观看| 欧美成人一级视频| 一级日本不卡的影视| 国产精品88888| 91精品国产综合久久蜜臀| 国产精品国产三级国产专播品爱网| 亚洲综合激情网| 成人av影院在线| 精品久久国产老人久久综合| 一区二区三区日韩精品| 国产精品一区二区久久不卡| 欧美美女一区二区在线观看| 国产精品久久久久久久久动漫 | 亚洲永久精品大片| 国产乱码精品一区二区三区五月婷| 欧美丝袜第三区| 亚洲免费观看高清完整版在线观看熊| 看片的网站亚洲| 欧美一区二区三区影视| 亚洲国产欧美日韩另类综合| av网站一区二区三区| 久久久久久久久99精品| 极品美女销魂一区二区三区免费 | 亚洲人成电影网站色mp4| 国产精品一级片| 久久久久久黄色| 国产乱码字幕精品高清av| 日韩欧美你懂的| 日韩福利电影在线| 欧美日韩你懂的| 亚洲成年人影院| 91超碰这里只有精品国产| 亚洲国产精品久久人人爱蜜臀| 91亚洲大成网污www| 自拍偷拍欧美精品| 在线免费观看日本欧美| 亚洲精品视频在线观看免费 | 中文字幕亚洲综合久久菠萝蜜| 国产剧情一区在线| 久久午夜电影网| 国产成人高清在线| 国产精品成人网| 日本高清视频一区二区| 亚洲最新视频在线观看| 欧美老女人在线| 久久99国产乱子伦精品免费| 精品国产制服丝袜高跟| 国产成人精品免费在线| 1024精品合集| 欧美日精品一区视频| 日韩精品欧美精品| 欧美精品一区二区三区高清aⅴ| 国产一区免费电影| 国产精品入口麻豆九色| 一本大道久久a久久精二百| 亚洲一卡二卡三卡四卡无卡久久| 精品视频免费看| 国产一区二区三区在线观看免费视频| 国产网红主播福利一区二区| 成人性生交大片免费看中文| 亚洲图片欧美激情| 欧美日本韩国一区二区三区视频| 天天综合天天综合色| 国产日韩欧美电影| 欧美中文字幕久久| 精彩视频一区二区三区| 亚洲男人的天堂在线aⅴ视频 | 一区二区三区丝袜| 91精品国产综合久久久久久久久久 | 宅男在线国产精品| 国产综合久久久久久鬼色| 亚洲欧洲色图综合| 51精品久久久久久久蜜臀| 国产成人在线免费观看| 亚洲成在线观看| 国产喂奶挤奶一区二区三区| 欧美亚洲免费在线一区| 国产精品888| 首页国产丝袜综合| 中文字幕欧美国产| 精品国产伦一区二区三区观看方式 | 欧美肥妇毛茸茸| 高清国产一区二区三区| 视频一区二区中文字幕| 亚洲毛片av在线| 久久精品一区二区三区四区| 欧美调教femdomvk| av在线一区二区| 国产一区二区三区在线观看精品| 午夜精品免费在线| 亚洲欧美日韩久久精品| 久久夜色精品国产噜噜av| 欧美电影在哪看比较好| 91在线国内视频| 高清在线不卡av| 国产黄色精品网站| 精品一区免费av| 日本少妇一区二区| 亚洲mv在线观看| 亚洲精品日韩一| 椎名由奈av一区二区三区| 国产欧美1区2区3区| 久久综合国产精品| 337p粉嫩大胆色噜噜噜噜亚洲| 欧美日韩免费电影| 欧美三级在线播放| 在线观看不卡一区| 日本道精品一区二区三区| 91在线视频观看| 91视频国产观看| 94-欧美-setu| 色婷婷久久一区二区三区麻豆| 大尺度一区二区| 成人一道本在线| 99re热视频这里只精品| 91丨九色丨蝌蚪丨老版| www.亚洲在线| 欧美最猛黑人xxxxx猛交| 欧美综合在线视频| 欧美精品第一页| 精品国产一区a| 国产亚洲女人久久久久毛片| 国产欧美视频一区二区| 国产精品二区一区二区aⅴ污介绍| 亚洲国产精品成人综合色在线婷婷| 国产亚洲制服色| 中文字幕一区二区三区乱码在线 | 国产清纯白嫩初高生在线观看91| 久久综合九色综合欧美就去吻| 日韩欧美中文字幕精品| 久久这里只有精品首页| 中文字幕精品一区二区三区精品| 国产精品久久久久久久久晋中 | 亚洲综合激情小说| 日本不卡免费在线视频| 狠狠狠色丁香婷婷综合激情| 国产盗摄视频一区二区三区| av电影一区二区| 欧美精选在线播放| 精品国产制服丝袜高跟| 国产精品卡一卡二卡三| 亚洲第一搞黄网站| 国产福利精品导航| 91国偷自产一区二区使用方法| 欧美高清一级片在线| 国产日韩欧美精品一区| 亚洲图片自拍偷拍| 国产麻豆日韩欧美久久| 在线亚洲+欧美+日本专区| 欧美一二三四在线| 国产精品卡一卡二卡三|