-2
我很新的C++,我不知道我怎麼會輸出一個8整數輸入第5的整數?以下是我迄今爲止:如何從8整數長輸入輸出第5個整數?然後告訴我們,如果第5整數是奇數還是偶數?C++
using namespace std;
void main()
{
int SID, i, x ;
cout << "Pleas enter 8 digits :";
cin >> SID;
cout << "The 5th digit is : " << x << endl;
for (SID = i; i < 10; i++);
if (x % 2 = 0) { cout << "It is even number."; }
else { cout << "It is odd number."; }
正如你可以看到我想要使用x作爲第5的整數,但我不知道如何代碼。我知道使用模數除法將決定第5個整數是偶數還是奇數。我知道在這裏使用循環是強制性的,並決定使用for循環,但我覺得我沒有正確輸入它。
提示:'for'循環無助於你。嘗試將'cin >> SID'放入循環中。 – owacoder