1 Star 0 Fork 0

Naiteiy/Calculator

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
check.h 638 Bytes
一键复制 编辑 原始数据 按行查看 历史
Naiteiy 提交于 2022-04-13 11:22 . Add files via upload
#pragma once
#ifndef _CHECK_H_
#define _CHECK_H_
#include <graphics.h> // 引用图形库头文件
#include <conio.h>
#include <stdio.h>
#include <math.h>
#include <string.h>
#include <vadefs.h>
#include "variable.h"
#include "do.h"
#include "clear.h"
void kaidu() {
Kmax = Kvmax / Kv;
Kmin = Kvmin / Kv;
if (Kmax < 0.9 && Kmin>0.1) {
hege += 1;
}
}
void ketiaobi() {
R = 10 * sqrt(S);
if (R >= Qmax / Qmin) {
hege += 1;
}
}
void check() {
wchar_t yes[] = L"合格";
wchar_t no[] = L"不合格";
if (hege >= 2) {
outtextxy(90, 420,yes);
}
else {
outtextxy(90, 420, no);
}
}
#endif // !_check_h_
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/naiteiy_gitee/Calculator.git
git@gitee.com:naiteiy_gitee/Calculator.git
naiteiy_gitee
Calculator
Calculator
main

搜索帮助