摘要: 一、四则运算程序 利用swith语句 #include <stdio.h>int main( ){ double a, b; char op; scanf("%lf%c%lf", &a, &op, &b); switch (op) { case '+': printf("%lf + %lf = %l 阅读全文
posted @ 2018-06-07 16:02 嗯呐呢 阅读(158) 评论(0) 推荐(0)