⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 sqroot.c

📁 i8051 vhdl 文档
💻 C
字号:
/* * Copyright (c) 1999-2000 Tony Givargis.  Permission to copy is granted * provided that this header remains intact.  This software is provided * with no warranties. * * Version : 2.8 *//*---------------------------------------------------------------------------*/#include <reg51.h>#include <math.h>/*---------------------------------------------------------------------------*/void main() {        float x = 3.0;    float y = 4.0;    float xx, yy, xx_yy, sqrt_xx_yy;        xx = x * x;    P0 = (unsigned char)xx;        yy = y * y;    P1 = (unsigned char)yy;        xx_yy = xx + yy;    P2 = (unsigned char)xx_yy;        sqrt_xx_yy = sqrt(xx_yy);    P3 = (unsigned char)sqrt_xx_yy;        while(1);}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -