2020年6月27日
摘要: #C语言 1. 基础 1. 变量 #include <stdio.h> int main() { int a = 1; char b = 'b'; float c = 3.1; double d = 3.1111111111; printf("a:%d\n",a); printf("b:%c\n", 阅读全文
posted @ 2020-06-27 22:39 longzhi 阅读(1222) 评论(0) 推荐(0)