摘要: 1 #include <stdio.h> 2 int main() 3 { 4 int a=5,b=7,c=100,d,e,f; 5 d=a/b*c; 6 e=a*c/b; 7 f=c/b*a; 8 printf("d=%d,e=%d,f=%d\n",d,e,f); 9 return 0; 10 } 阅读全文
posted @ 2020-10-29 21:26 颜嘉震 阅读(93) 评论(1) 推荐(0) 编辑