摘要: #ex1#include<stdio.h> int main(){ int a =5,b=7,c=100,e,d,f; d=a/b*c;//d=0 其对应的数学式为d=(a/b)*c e=a*c/b;//e=71 其对应的数学式为e=(a*c)/b f=c/b*a;//f=70 其对应的数学式为f= 阅读全文
posted @ 2020-11-01 18:35 鸣蜩 阅读(70) 评论(4) 推荐(2) 编辑