如何在if循环中使用模运算符检查2的正倍数
Posted
技术标签:
【中文标题】如何在if循环中使用模运算符检查2的正倍数【英文标题】:how to check for positive multiples of 2 using modulus operator in an if loop 【发布时间】:2021-12-15 01:02:27 【问题描述】:我试图在 C++ 中使用 mod % 运算符,但它显示错误 Expression is not assignable
int i = 0;
cin>>i;
// for (i; i < 25; i++)
if (i < 25 && i % 2 = 0)
cout<<"test"<<i;
else
cout<<"test2"<<i;
return 0;
【问题讨论】:
【参考方案1】: int i = 0;
cin>>i;
// for (i; i < 25; i++)
if (i < 25 && i % 2 == 0)
cout<<"test"<<i;
else
cout<<"test2"<<i;
return 0;
i%2=0 改变了 i%2==0
【讨论】:
正如目前所写,您的答案尚不清楚。请edit 添加其他详细信息,以帮助其他人了解这如何解决所提出的问题。你可以找到更多关于如何写好答案的信息in the help center。以上是关于如何在if循环中使用模运算符检查2的正倍数的主要内容,如果未能解决你的问题,请参考以下文章