标签:测试 cpp img == ios bool 错误 space +=
刷题技巧
//vector初始化
vector<int> v(5);
//此时v的大小为5,里面内容为0
cin>>a>>b
输入时,鼠标不能连点、测试会出问题
#include<iostream>
using namespace std;
int main()
{
int a,b,flag=0;
while(cin>>a>>b)
{
if(b!=0)
{
if(flag==1)
cout<<" ";
cout<<a*b<<" "<<b-1;
flag=1;
}
}
if(flag==0) cout<<"0 0";
return 0;
}
bool isLeap(int year)
{ return (year%4==0&&year%400!=0)||(year%400==0); }
B1022 D进制的转换
#include<iostream>
#include<stack>
using namespace std;
int main()
{
int a,b,D;
stack<int> s;
cin>>a>>b>>D;
a+=b;
if(a==0) //如果不判断此处的a==0会出现一个数据点错误
{
cout<<0;
return 0;
}
while(a!=0)
{
b=a%D;
a=a/D;
s.push(b);
}
while(!s.empty())
{
cout<<s.top();
s.pop();
}
return 0;
}
标签:测试 cpp img == ios bool 错误 space +=
原文地址:https://www.cnblogs.com/chenhao777/p/12293344.html