摘要: 计算机分正电和负电也就是0与1 而这0或者1就是b(bit)(比特)(位) 一个字节(byte)等于8个bit(b) 一KB等于1024byte(字节) 一MB等于1024KB 一GB等于1024MB 一TB等于1024GB 一PB等于1024TB (C语言相关:char是2个字节,也就是16(00 阅读全文
posted @ 2022-05-23 21:45 kai-le 阅读(983) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> // #号是一种指令形式,include是包含的意思,<>是一种语法形式,std 标准 standard input output(标志输入输出) // 包含一个叫stdio.h的文件(也就是python里的调用库) int main() // 主函数-程序的入 阅读全文
posted @ 2022-05-23 16:28 kai-le 阅读(59) 评论(0) 推荐(0) 编辑