#include<stdio.h> #include<math.h> void main() { int a,b,c; printf("请输入两个数,这将会相除:"); scanf("%d,%d",a,b); c=a/b; printf("得数=%d",c); }