代码搜索:TI C2000 有哪些应用?
找到约 10,000 项符合「TI C2000 有哪些应用?」的源代码
代码结果 10,000
www.eeworm.com/read/184710/9084511
#3 trasmit.#3
void trbyte(char a)
{;
IE=0;
SBUF0=a;
while (!TI0)
{ };
TI0=0;
}
void trstring(char *a)
{
for( ;*a!='\0';a++)
trbyte(*a);
}
www.eeworm.com/read/376212/9325055
m splinesafe.m
function theResult = splinesafe(t, z, ti, theSlopeFlag)
% splinesafe -- Spline interpolation with end-slope control.
% splinesafe(t, z, theSlopeFlag) returns "pp" coefficients for
% interpolating
www.eeworm.com/read/376212/9325087
m splineq.m
function [ti, pp] = splineq(t, z, nPoints, theSlopeFlag)
% splineq -- Equally-spaced spline interpolation.
% [ti, pp] = splineq(t, z, nPoints, theSlopeFlag) interpolates
% complex z(t) at nPoints
www.eeworm.com/read/366666/9805413
cpp usaco_4_1_1_nuggets-数学问题+背包.cpp
/*
PROB: nuggets
LANG: C++
*/
/*
关于x,y的二元一次方程ax+by=c (a,b,c∈N*),若gcd(a,b)=c,则原方程必然有整数解(证明请参看扩展欧几里德算法有关内容)
此时ax+by=kc(k∈Z)必然有整数解。当c=1即gcd(a,b)=1时,ax+by在x,y∈Z范围内可以构成全体整数
回到这道题,这里a,b代表两种包装的麦香牛
www.eeworm.com/read/358196/10194031
c 5087测试程序.c
#include
unsigned char code Tab[10]={0x47,0x1e,0x2e,0x4e,0x1d,0x2d,0x4d,0x1b,0x2b,0x4b};
unsigned char display[]={0xFC,0x60,0xDA,0xF2,0X66,0xB6,0xBE,0xE0,0xFE,0xF6,0x00};
unsigned
www.eeworm.com/read/279550/10421373
txt pku 3399 贪心,考虑多种情况.txt
#include
#include
#include
#include
#include
#include
#include
using namespace std;
//PKU 3399 贪心,考虑多种情况
#define NMA
www.eeworm.com/read/278388/10538717
c infsend.c
#include
#include
#include
void infsend(void)
{
unsigned char i,c,k,j;
c=0;
for(i=0;i
www.eeworm.com/read/275970/10780144
h syscallent.h
/*
* Copyright (c) 1993 Branko Lankester
* Copyright (c) 1993, 1994, 1995 Rick Sladkey
* All rights reserved.
*
* Redistribution and use in source and bina
www.eeworm.com/read/348596/10883084
txt 1761.txt
#include"iostream.h"
#include"string.h"
#include"stdio.h"
char name[62][10],w[10];
long ci[62][9],ti[62][9];
int main()
{long i,n,j,m,t,c;char q,a;
for(i=0;i
www.eeworm.com/read/273339/10919686
txt test1_2.txt
main()
{
printf(“ ab c\t de\rf\tg\n”);
printf(“h\ti\b\bj d”);
}