代码搜索:基本运算
找到约 10,000 项符合「基本运算」的源代码
代码结果 10,000
www.eeworm.com/read/14473/382192
pdf 纤维光学互联器件和无源器件基本试验和测量程序:第2-4部分:试验 光纤光缆保持力gb18310.4-2001.pdf
www.eeworm.com/read/142983/12906328
txt analy-18.txt
分析与答案
分析:本题主要考查数的运算、算术运算符的使用、循环结构、排序、数组的使用等知识点。
本题利用for循环和数学运算符分别求出1000~5000之内的四位数的千位、百位、十位、个位上的数,判断千位上的数与百位的和是否等于十位上的数与个位上的数的和,并且同时满足千位上的数与百位上的数的和等于个位上的数与十位上的数差的正10倍的条件,为真则记录满足条件的这些数的个数cnt,并求出满 ...
www.eeworm.com/read/389153/8546462
asm multibyte_bcd_sub.asm
;---------------------------------------------多字节十进制减法
入口:运算字节长度 B_COUNT ,TEMP2 :被减数低字节地址 ,TEMP3 :减数低字节地址
出口:被减数区为结果
MULTIBYTE_BCD_SUB;###############################
MOV
www.eeworm.com/read/388569/8600267
cpp 1261 字串数.cpp
/*
1261 字串数
Time Limit : 1000 ms Memory Limit : 32768 K Output Limit : 256 K
GUN C++
*/
//组合公式很简单,组合运算量不大,只涉及大数乘除
#include
#include
#include
#include
www.eeworm.com/read/286613/8755625
cpp p2-137.cpp
#include
#include
using namespace std;
//测试字符串(string)对象
void main()
{
//创建string对象
string s1,s2;
//string对象的赋值运算
s1="One";
s2="Two";
cou
www.eeworm.com/read/286613/8756179
cpp p2-137.cpp
#include
#include
using namespace std;
//测试字符串(string)对象
void main()
{
//创建string对象
string s1,s2;
//string对象的赋值运算
s1="One";
s2="Two";
cou
www.eeworm.com/read/429840/8786480
m examp10_2.m
A={'skhsak','ssd','ssfa'}; B={'sdsd','ssd','sssf'}; F=union(A,B) % 并集
D=intersect(A,B) % 交集
C={'jsg','sjjfs','ssd'}; % 可以由下面的集合运算验证结合律
E=setdiff(union(intersect(A,B),intersect(C,B)),interse
www.eeworm.com/read/385435/8805424
m openclose.m
%开启与闭合运算
I=imread('E:\image\jianputaozhonglvbo.jpg');
se=strel('square',3);
I2=imopen(I,se);
I3=imclose(I,se);
imshow(I);
figure,imshow(I2);
figure,imshow(I3);