搜索:LONG
找到约 257 项符合「LONG」的查询结果
结果 257
按分类筛选
- 全部
- 技术资料 (50)
- 书籍 (38)
- 单片机编程 (17)
- 其他 (14)
- 其他书籍 (12)
- 单片机开发 (10)
- 数据结构 (9)
- Linux/Unix编程 (7)
- 软件设计/软件工程 (7)
- Java编程 (5)
- 数学计算 (5)
- matlab例程 (5)
- 源码 (4)
- 数值算法/人工智能 (4)
- 汇编语言 (4)
- 文章/文档 (4)
- 通讯/手机编程 (3)
- 技术书籍 (3)
- 模拟电子 (3)
- Internet/网络编程 (3)
- 笔记 (2)
- 电源技术 (2)
- DSP编程 (2)
- 操作系统开发 (2)
- 书籍源码 (2)
- 教程资料 (2)
- 可编程逻辑 (2)
- 编译器/解释器 (2)
- 人工智能/神经网络 (2)
- 微处理器开发 (2)
- Oracle数据库 (2)
- 其他嵌入式/单片机内容 (2)
- 人物传记/成功经验 (2)
- 软件 (1)
- 论文 (1)
- C/C++语言编程 (1)
- 软件工程 (1)
- 测试测量 (1)
- 开发工具 (1)
- 实用工具 (1)
- 通信网络 (1)
- 嵌入式综合 (1)
- 压缩解压 (1)
- 手机短信编程 (1)
- 磁盘编程 (1)
- 通讯编程文档 (1)
- 嵌入式/单片机编程 (1)
- Java书籍 (1)
- VHDL/FPGA/Verilog (1)
- Delphi控件源码 (1)
- 其他行业 (1)
- VC书籍 (1)
- 行业发展研究 (1)
- GPS编程 (1)
- Ajax (1)
- 精品软件 (1)
- VIP专区 (1)
https://www.eeworm.com/dl/644/485500.html
汇编语言
编写一个程序
编写一个程序,输出基本数据类型char, short, int, long, float, double和指针类型void *, char *, short *, int *, long *, float *, double *的数据类型的长度。
https://www.eeworm.com/dl/916948.html
技术资料
使用宽带自动增益控制电路,使OPA660能够改变信号幅度并在输入电压范围内保持输出信号的稳定
Multiplication of analog signals has long been one of themost important nonlinear functions of a
https://www.eeworm.com/dl/684/309036.html
软件设计/软件工程
This paper presents the results of the Finnish national "Technology Vision of the Future Distributio
This paper presents the results of the Finnish national "Technology Vision of the Future Distribution Network" project. The aim of the project was to create a technology vision of future distribution networks. Because the life span of networks is very long, a long term vision is ...
https://www.eeworm.com/dl/921675.html
技术资料
带反馈运算放大器EL2244C的峰值检测器的介绍
Diodes have long served as adequate rectifiers despitenecessarily large input voltages and poor
https://www.eeworm.com/dl/904424.html
技术资料
介绍标准和新型串行多路复用器的结构,并介绍由CPLD和收发器得到多路复用器的设计
Serial interfaces have been used for digital communicationsalmost as long as digital logic has b
https://www.eeworm.com/dl/914800.html
技术资料
用可编程逻辑XC4000系列配置总线构造的串行输入 输出器件
The combination of long data lines and 3-state buffers,found in Xilinx devices, is ideal for bus
https://www.eeworm.com/dl/926168.html
技术资料
用可编程逻辑XC4000系列配置总线构造的串行输入 输出器件
The combination of long data lines and 3-state buffers,found in Xilinx devices, is ideal for bus
https://www.eeworm.com/dl/926715.html
技术资料
组合运算放大器和缓冲器BUF634,以得到更大输出功率和更高速度
As long as amplifiers have existed, engineers have been dreaming of an “ideal” op amp. As little noi
https://www.eeworm.com/dl/502385.html
C/C++语言编程
toj 4022源代码
#include <iostream>
using namespace std;
int main(){
int t;
cin>>t;
while(t--){
long long n;
cin>>n;
if(n%2==1)
cout<<(n*n-1)/4<<endl;
else if (n%4==0)
cout <<(n*n)/4-1<<endl;
else{
if(n==2)
cout<<1<<endl;
else{
long long k=n/2-1;
cout <<k*k+ ...