摘要:
新建筛选器game,下面新建项maze.c 将筛选器file下面的项io.c的main方法的名改为main60 1.复制筛选器combination下面的项loopBranch.c的基础框架到这里 #include <stdio.h> int main(void) { printf(""); ret 阅读全文
posted @ 2025-07-31 20:38
基础狗
阅读(4)
评论(0)
推荐(0)
摘要:
问:有 1、2、3、4 四个数字,能组成多少个互不相同且无重复数字的三位数?都是多少? 新建筛选器combination,下面新建项loopBranch.c 将loop.c最后一个main方法的名改为main33 1.准备基础框架 void int main(void) {} int main(vo 阅读全文
posted @ 2025-07-31 20:37
基础狗
阅读(7)
评论(0)
推荐(0)
摘要:
新建筛选器classic,下面新建项leapyear.c 将筛选器combination下面的项loopBranch.c的main方法的名改为main40 1.复制筛选器combination下面的项loopBranch.c的基础框架到这里 #include <stdio.h> int main(v 阅读全文
posted @ 2025-07-31 20:37
基础狗
阅读(12)
评论(0)
推荐(0)
摘要:
1.下载visual studio installer https://visualstudio.microsoft.com/zh-hans/thank-you-downloading-visual-studio/?sku=Community&channel=Release&version=VS20 阅读全文
posted @ 2025-07-31 20:36
基础狗
阅读(5)
评论(0)
推荐(0)
摘要:
新建项variable.c 1.int #include <stdio.h> int main(void) { int a = 1; printf("%d",a); return 0; } 2.float 将上一个main方法的名改为main01 int main(void) { float b = 阅读全文
posted @ 2025-07-31 20:36
基础狗
阅读(4)
评论(0)
推荐(0)
摘要:
新建项operate.c 1.数字 将variable.c最后一个main方法的名改为main04 #include <stdio.h> int main(void) { int num = 1; num = 2; num += 3; num *= 4; num -= 5; num /= 6; pr 阅读全文
posted @ 2025-07-31 20:36
基础狗
阅读(7)
评论(0)
推荐(0)
摘要:
新建项branch.c 1.if 将branch.c最后一个main方法的名改为main12 添加stdbool.h里的true #include <stdio.h> #include <stdbool.h> int main(void) { int a = 1; if (true) { print 阅读全文
posted @ 2025-07-31 20:36
基础狗
阅读(6)
评论(0)
推荐(0)
摘要:
新建项loop.c 1.while 将branch.c最后一个main方法的名改为main23 #include <stdio.h> int main(void) { int num = 0, sum = 0; while (num < 100) { sum += num; num++; } pri 阅读全文
posted @ 2025-07-31 20:36
基础狗
阅读(4)
评论(0)
推荐(0)
摘要:
原文链接:https://blog.csdn.net/a18845594188/article/details/130858443 安装termux 官方网站:https://termux.dev/cn/ github项目地址:https://github.com/termux/termux-app 阅读全文
posted @ 2025-07-31 20:30
基础狗
阅读(540)
评论(0)
推荐(0)

浙公网安备 33010602011771号