Ai
1 Star 0 Fork 2

BuildOpenSource/busybox

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
bc_misc2.bc 497 Bytes
一键复制 编辑 原始数据 按行查看 历史
define x() {
"x"
return ( 1 )
}
define y() {
"y"
return (2)
}
define z() {
"z"
return (3)
}
if ( x() == y() ) {1}
1
if ( x() <= y() ) {2}
if ( y() >= x() ) {3}
if ( x() != y() ) {4}
if ( x() < y() ) {5}
if ( y() > x() ) {6}
if ( x() == z() ) {11}
11
if ( x() <= z() ) {12}
if ( z() >= x() ) {13}
if ( x() != z() ) {14}
if ( x() < z() ) {15}
if ( z() > x() ) {16}
x = -10
while (x <= 0) {
x
if (x == -5) break;
x += 1
}
define u() {
auto a[];
return a[0]
}
u()
if (x == -4) x else x - 4
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/build-open-source/busybox.git
git@gitee.com:build-open-source/busybox.git
build-open-source
busybox
busybox
master

搜索帮助