代码搜索:Microphone array
找到约 10,000 项符合「Microphone array」的源代码
代码结果 10,000
www.eeworm.com/read/310869/13642029
cpp double_array.cpp
//6.编写一个程序,它使用下列函数:
//Fill_<mark>array</mark>()将一个double数组的名称和长度作为参数,它提示用户输入
//double值,并将这些值存储到数组中。当数组被填满或用户输入了非数字时,
//输入将停止,并返回实际输入了多少个数字。
//Show_<mark>array</mark>()将一个double数组的名称和长度作为参数,并显示该数组的内容。
//Reverse-<mark>array</mark>()将一个d ...
www.eeworm.com/read/310869/13642062
cpp struct_array.cpp
//p110 6.结构CandyBar包含3个成员,如编程练习5所示.请编写一个程序,创建一个程序,创建一个饱含3个元素的
//CandyBar数组,并将它们初始化为所选择的值,然后显示每个结构的内容.
#include
#include
const int MAX=20;
using namespace std;
struct Can
www.eeworm.com/read/310869/13642067
cpp new_array.cpp
//p110 6.结构CandyBar包含3个成员,如编程练习5所示.请编写一个程序,创建一个程序,创建一个包含3个元素的
//CandyBar数组,并将它们初始化为所选择的值,然后显示每个结构的内容.
//完成编程练习6,但使用new来动态分配数组,而不是声明一个包含3个元素的CandyBar数组.
#include
#include
#
www.eeworm.com/read/310583/13648823
doc news array.doc
www.eeworm.com/read/310544/13649443
bak array turn.bak
#include
int main(int argc, char* argv[])
{
int a[16][12]={
0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, //12列x16行
0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x
www.eeworm.com/read/310544/13649450
lst array turn.lst
C51 COMPILER V7.50 ARRAY_TURN 11/11/2007 21:36:02 PAGE 1
C51 COMPILER V7.50, COMPILATION OF MODULE ARRAY_TURN
OBJECT MODULE PLACED
www.eeworm.com/read/310544/13649452
c array turn.c
#include
void main()
{
int a[16][12]={
0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, //12列x16行
0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
www.eeworm.com/read/308995/13684372
cpp array_init.cpp
/*
* This file contains code from "C++ Primer, Fourth Edition", by Stanley B.
* Lippman, Jose Lajoie, and Barbara E. Moo, and is covered under the
* copyright and warranty notices given in that
www.eeworm.com/read/308995/13684436
cpp copy_array.cpp
/*
* This file contains code from "C++ Primer, Fourth Edition", by Stanley B.
* Lippman, Jose Lajoie, and Barbara E. Moo, and is covered under the
* copyright and warranty notices given in that
www.eeworm.com/read/308995/13684607
cpp copy_array.cpp
/*
* This file contains code from "C++ Primer, Fourth Edition", by Stanley B.
* Lippman, Jose Lajoie, and Barbara E. Moo, and is covered under the
* copyright and warranty notices given in that