代码搜索结果

找到约 10,000 项符合 T 的代码

t.pas

{$+} program test(input,output); const c1=100; c2=90.3; type type1 = real; var a: type1; b : boolean; begin write(c1); write(c2); a:=c1*c2;

t.txt

T类 函数名: tan 功 能: 正切函数 用 法: double tan(double x); 程序例: #include #include int main(void) { double result, x;   x = 0.5; result = tan(x);