下面程序可以实现从键盘输入两个正整数,求它们相除的余数并输出。请补全代码。
#include<stdio.h> void main( ) { int a, b, t; scanf("%d%d", &a, &b); t = ①; ②; }
Copyright ©