timermac.c
来自「svd 算法代码 This directory contains instru」· C语言 代码 · 共 22 行
C
22 行
/************************************************************************* (c) Copyright 1993 University of Tennessee All Rights Reserved *************************************************************************//*-------------------------------------------------------------------------- * Timing Sample Program * * This programs uses the "TickCount" Macintosh Tool which gives the * system time in 1/60th of a second. It computes the elapsed time * and converts it into min/sec units. * *------------------------------------------------------------------------*/ #include <stdio.h> #include <Packages.h>float timer(){ return( (float) TickCount() / 60.0); }
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?