代码搜索:2
找到约 10,000 项符合「2」的源代码
代码结果 10,000
www.eeworm.com/read/124791/14544201
cpp chapter2-2.cpp
//文件名:CHAPTER2-2.cpp
#include //因iomanip.h中包含有Iostream.h,所以该命令可省略
#include
void main()
{
int x=30, y=300, z=1024;
cout
www.eeworm.com/read/124670/14555036
rc2 test2.rc2
//
// TEST2.RC2 - resources Microsoft Visual C++ does not edit directly
//
#ifdef APSTUDIO_INVOKED
#error this file is not editable by Microsoft Visual C++
#endif //APSTUDIO_INVOKED
/////
www.eeworm.com/read/224965/14559775
cpp exam2-2.cpp
#include "sqlist.cpp" /*假设线性表以顺序表表示*/
void unionList(SqList *LA,SqList *LB,SqList *&LC)
{
int lena,i;
ElemType e;
InitList(LC);
for (i=1;i
www.eeworm.com/read/124325/14576580
cpp ex2_2.cpp
# include
# include
void main() {
char s1[]="Hello C++";
char s2[10], s3[20];
s2[0]='B';s2[1]='e';s2[2]='g';s2[3]='i';s2[4]='n';
s2[5]='\0'; //对字符串处理非常重要
strc
www.eeworm.com/read/124314/14577332
cpp ex2_2.cpp
# include
# include
void main() {
char s1[]="Hello C++";
char s2[10], s3[20];
s2[0]='B';s2[1]='e';s2[2]='g';s2[3]='i';s2[4]='n';
s2[5]='\0'; //对字符串处理非常重要
strc
www.eeworm.com/read/124288/14578142
rc2 demo2.rc2
//
// DEMO2.RC2 - resources Microsoft Visual C++ does not edit directly
//
#ifdef APSTUDIO_INVOKED
#error this file is not editable by Microsoft Visual C++
#endif //APSTUDIO_INVOKED
/////
www.eeworm.com/read/224480/14588428
m ex2_2.m
num=6*[1,5];
den=conv(conv(conv([1,3,1],[1,3,1]),[1,6]),[1,6,5,3]);
tf(num,den)
www.eeworm.com/read/123833/14611589
m exp2_2.m
clc
clear
more on
echo on
%为便于理解,在程序等执行过程中显示程序的表达式
a=16;b=12;
c=3;
d=4;
e=a+b-c*d
f=e/2
k=e\2
h=c^3
g=e+f+ ...
2+1-9
aa=sin(g)
abs(aa)
bb=2+3j
cc=conj(bb)
rbb=real(bb)
log(rbb)