问题描述
这里主要熟悉的时在没给定结束条件时要如何结束:
抓住特征:系数+指数,是一对,一次是要两个,所以可以根据输入元素的返回情况判断
scanf的返回值!
代码
#include<bits/stdc++.h>
using namespace std;
int main()
{
ios::sync_with_stdio(false);
cin.tie(0),cout.tie(0);
int a,b;
int flag=0;
while(scanf("%d %d",&a,&b)==2&&b) //here here!~~
{
if(flag==1)
cout << " ";
cout << a*b << " " << b-1;
flag=1;
}
if(flag==0)
cout << "0 0";
return 0;
}