程序填空
以下程序的功能是计算2个整数的商和余数。
#include<stdio.h>
void main( )
{ int a,b;
int quot,resi;
printf(“Please enter two integer: “);
scanf(“%d%d”,&a,&b);
quot= ① ;
resi= ② ;
printf(“quot=%d,resi=%d\n”, ③ );
}
①a/b ②a%b ③quot,resi
© 版权声明
部分文章来自网络,只做学习和交流使用,著作权归原作者所有,遵循 CC 4.0 BY-SA 版权协议。
THE END
暂无评论内容