代码搜索结果
找到约 10,000 项符合
Test 的代码
test.hif
Version 4.1 Build 181 06/29/2004 SJ Full Version
31
OFF
OFF
OFF
OFF
0
# entity
MAX114
# logic_option {
AUTO_RAM_RECOGNITION
ON
}
# case_insensitive
# source_file
MAX114.vhd
1091409480
test.c
/*
**************************************************************************************************************
* uC/OS-II
*
test.frm
VERSION 5.00
Begin VB.Form Test
Caption = "Form1"
ClientHeight = 3195
ClientLeft = 60
ClientTop = 345
ClientWidth = 4680
LinkTopic =
test.dsw
Microsoft Developer Studio Workspace File, Format Version 6.00
# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
###############################################################################
test.cpp
#include
#include
#include
#include
//判断两个整数是否互质,认为1和任何整数互质
bool IsPremeNumber(int m,int n)
{
if(m==1||n==1)return true;
else
{
int temp=0;