摘要: 实验结果: ex1: 1 #include <stdio.h> 2 int main() { 3 int a=5, b=7, c=100, d, e, f; 4 5 d = a/b*c; 6 e = a*c/b; 7 f = c/b*a; 8 9 printf("d=%d, e=%d, f=%d\n 阅读全文
posted @ 2020-11-01 16:59 卷心菜投手 阅读(111) 评论(1) 推荐(0) 编辑