C语言实验——格式化输出(常量练习)

#include <stdio.h> #include <stdlib.h> int main() {     int a;     char b;     double c;     a = 100;     b = 65;     c = 3.140000;     printf("%d\n%c\n%lf\n", a, b, c);     return 0; }
相关文章
相关标签/搜索