代码搜索:Raspberry Pi
找到约 10,000 项符合「Raspberry Pi」的源代码
代码结果 10,000
www.eeworm.com/read/419769/10838844
m lijian.m
n=1:1024;
x=cos(0.1*2*pi*n);
%tfrsp(x');
%tfrwv(x');
%tfrpwv(x');
tfrcw(x')
%tfrspwv(x');
www.eeworm.com/read/275022/10839547
c 13kfft0.c
#include "stdio.h"
#include "13kfft.c"
#include "math.h"
main()
{ int i,j;
double pr[64],pi[64],fr[64],fi[64];
for (i=0; i
www.eeworm.com/read/274718/10856539
cpp 5_24.cpp
#include
using namespace std;
#define PI 3.14159 //宏名PI为符号常量
#define n a //宏名n将用a来替换
#define LENGTH 2*PI*n // 宏名LENGTH将用2*PI*n来替换
int
www.eeworm.com/read/274718/10856561
cpp 5_25.cpp
#include
using namespace std;
#define PI 3.14159 //宏名Pi将替换为3.14159
#define n a
#undef PI //取消宏名PI的定义
#define PI 3.1415926 //重新定义宏名PI将替换3.1415926
www.eeworm.com/read/274718/10856853
cpp 2_4.cpp
#include
using namespace std;
int main()
{ const float PI=3.1415926; //float 型常量
float r=2.0; //用float 型常量初始化变量
cout
www.eeworm.com/read/274718/10856976
cpp 3_11.cpp
#include
using namespace std;
void ComCircle(double&, double&, double); //函数的原型声明
int main()
{ double r, a, c;
cout > r;
ComCircle(a, c, r);
cout
www.eeworm.com/read/274718/10857076
cpp 6_33.cpp
#include
using namespace std;
void swap(int v1,int v2){int tmp=v2; v2=v1; v1=tmp; cout
www.eeworm.com/read/274718/10857103
cpp 6_51.cpp
#include
using namespace std;
int main()
{ int *pi=new int(88),*qi; //声明两个整型指针变量
cout
www.eeworm.com/read/274718/10857140
cpp 6_27.cpp
#include
using namespace std;
int main()
{ //void vobj; //错误1:不能声明void类型的变量
void *pv; //正确:可以声明void类型的指针
int i=10,*pi;
pv = &i; //void类型指针指向整型变量
pi = (int *)pv;
www.eeworm.com/read/274718/10857212
cpp 6_26.cpp
#include
using namespace std;
int main()
{ int i=10,j=20;
const int* pi=&i; //指向常量的指针
//*pi=20; //错误1:不能通过pi改变所指向变量的值
cout