上一页 1 ··· 48 49 50 51 52 53 54 55 56 ··· 60 下一页
摘要: 1.问题 在使用Clion中想要查看提交的相关信息,发现侧边栏commit消失 2.解决方法 打开设置,选择会用非模式提交界面即可 阅读全文
posted @ 2023-09-16 11:11 DawnTraveler 阅读(626) 评论(0) 推荐(0)
摘要: 1.题目 2.算法思路 3.代码 // // Created by trmbh on 2023-09-13. // // #include <stdio.h> #include <stdlib.h> #include <conio.h> #define TRUE 1 #define FALSE 0 阅读全文
posted @ 2023-09-13 15:07 DawnTraveler 阅读(103) 评论(0) 推荐(0)
摘要: 1.问题 在编写C程序时,使用到了_getch()这个函数,但是内嵌输出终端出现了一些问题,不能正常显示 2.解决方法 1.点击菜单栏中的运行 2.选择编辑配置,并在其中勾选在外部控制台中运行 3.完成 阅读全文
posted @ 2023-09-13 14:59 DawnTraveler 阅读(58) 评论(0) 推荐(0)
摘要: 1.getch函数 主要内容 int getch(void): 所在头文件:conio.h 函数用途:从控制台读取一个字符,但不显示在屏幕上,即一个不需要通过ENTER确定的getchar. 函数原型:int getch(void) 返回值:读取的字符 例如: char ch;或int ch; ge 阅读全文
posted @ 2023-09-13 11:32 DawnTraveler 阅读(127) 评论(0) 推荐(0)
摘要: 1.题目 使用迭代,并通过辗转相除法求最大公约数 2.代码 // // Created by trmbh on 2023-09-13. /* 辗转相除法 */ // #include "stdio.h" int fun(int m, int n) { int r; if (n > m) return 阅读全文
posted @ 2023-09-13 11:17 DawnTraveler 阅读(47) 评论(0) 推荐(0)
摘要: 1.题目 例3.6打印杨辉三角形。 利用队列打印杨辉三角形。杨辉三角形的图案如图3.18所示。 2.算法思路 3.代码 // // Created by trmbh on 2023-09-12. // #include <stdio.h> #include <stdlib.h> #define TR 阅读全文
posted @ 2023-09-13 10:24 DawnTraveler 阅读(24) 评论(0) 推荐(0)
摘要: 1.题目简述 2.算法思路 3.代码 // // Created by trmbh on 2023-09-11. // #include<stdio.h> #include<stdlib.h> #include<string.h> #include<math.h> #define FALSE 0 # 阅读全文
posted @ 2023-09-12 20:16 DawnTraveler 阅读(8) 评论(0) 推荐(0)
摘要: 1.问题 1.1重复弹出登录框,无法登陆 关闭登录框,显示invalid container name 1.2 重启后PDB数据库处于mounted挂载状态,未打开导致使用 Enterprise 登陆时一直显示invalid container name 2.解决方法 参考链接:https://ww 阅读全文
posted @ 2023-09-12 13:34 DawnTraveler 阅读(263) 评论(0) 推荐(0)
摘要: 1.问题 安装过程中一直卡在36% 检查 dbca 日志文件 位于 H:\app\trmbh\cfgtoollogs\dbca\ORCL\trace.log_2023-09-12_12-04-20PM 卡在executing datapatch这一步上了 2.解决方法 感谢大佬! 转载自:https 阅读全文
posted @ 2023-09-12 12:53 DawnTraveler 阅读(475) 评论(0) 推荐(0)
摘要: 1.问题 之前一直进不去ORACLE Enterprise Manager Database Express,显示的是localhost拒绝了访问,经过查阅知道是没有配置相应端口。 2.解决方法 转载自:https://blog.csdn.net/wshjx0001/article/details/ 阅读全文
posted @ 2023-09-12 12:45 DawnTraveler 阅读(348) 评论(1) 推荐(0)
上一页 1 ··· 48 49 50 51 52 53 54 55 56 ··· 60 下一页