摘要: 快速复习--C语言编程小问题 1. C语言编程基本框架 #include <stdio.h> int main(){ return 0;} 2. 输入输出 int a; float b; double c; scanf("%d %f %lf", &a, &b, &c); //输入加:& printf("a = %d\nb = % 阅读全文
posted @ 2022-03-09 16:25 撰四记 阅读(36) 评论(0) 推荐(0) 编辑