搜索:cout
找到约 24 项符合「cout」的查询结果
结果 24
按分类筛选
https://www.eeworm.com/dl/686/289147.html
VC书籍
VC primer protype in iostream cout
VC primer protype in
iostream cout
https://www.eeworm.com/dl/663/388867.html
VHDL/FPGA/Verilog
verilog code 4-bit carry look-ahead adder output [3:0] s //summation output cout //carryout inpu
verilog code
4-bit carry look-ahead adder
output [3:0] s //summation
output cout //carryout
input [3:0] i1 //input1
input [3:0] i2 //input2
input c0 //前一級進位
https://www.eeworm.com/dl/654/264453.html
数据结构
out< "please input the number of the nodes"<<endl cin>>nodesNum cout<<"pl
out< "please input the number of the nodes"<<endl
cin>>nodesNum
cout<<"please input the graph"<<endl
for( i = 1 i<=nodesNum i++)
for( j = 1 j <= nodesNum j++)
cin>>graph[i][j] */
https://www.eeworm.com/dl/663/364996.html
VHDL/FPGA/Verilog
利用LMP的20bit counter,比自带的cout进位要快的多。已经同错综合和时序仿真。
利用LMP的20bit counter,比自带的cout进位要快的多。已经同错综合和时序仿真。
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+ ...
https://www.eeworm.com/dl/835557.html
技术资料
Verilog的135个经典设计 实例
【例3.1]4位全加器module adder 4(cout,sum i na,i nb,cin);output[3:0]sum output cout;input[3:0]i na,i nb;input cin;assign(cout,suml=i na +i nb+ci n;endmodule【例3.2]4位计数器module count 4(out,reset,clk);output[3:0]out;input reset,cl k;regl 3:01 out;always ...
https://www.eeworm.com/dl/684/232946.html
软件设计/软件工程
#include<iostream> using namespace std int main() { unsigned long x,warcraft,war,l
#include<iostream>
using namespace std
int main()
{
unsigned long x,warcraft,war,l
cin> x
while(x)
{
unsigned long *p=new unsigned long[x+1]
if(p==NULL)
{
cerr<<"error!"<<endl
abort()
}
for(warcraft=0 warcraft<=x warcraft++)
*(p+warcraft)=0
*p=1
...
https://www.eeworm.com/dl/682/220598.html
中间件编程
平时写程序时经常要记录下日志
平时写程序时经常要记录下日志,C++的cout类很好用吧,呵呵,
以前写了个类似的类 来记录下程序的运行日志
https://www.eeworm.com/dl/663/483393.html
VHDL/FPGA/Verilog
(1) 计数器的输入为RST(复位)
(1) 计数器的输入为RST(复位),EN(使能),CLK(时钟),U_D(up_down加/减选择);输出为COUT(进位/借位输出),CQ(3:1)(数值输出);
范围65536。
https://www.eeworm.com/dl/534/328507.html
其他
一个日志类程序。平时写程序时经常要记录下日志
一个日志类程序。平时写程序时经常要记录下日志,C++的cout类很好用吧,呵呵,以前写了个类似的类 来记录下程序的运行日志。