Description
使用变量盒子 输出算式 20/7=2...6
HINT
部分代码如下:
需要删除横线,填入正确的代码,填写的代码不能出现数字
#include<bits/stdc++.h>
using namespace std;
int main()
{
int a=20,b=7;
cout<<___________;
cout<<"/";
cout<<____________;
cout<<"=";
cout<<_______;
cout<<"...";
cout<<_______;
return 0;
}