我想知道如何将一个数组与两个数组进行比较,但有一些规则:在我的代码中,我需要输入 8 位数字来进行循环 - 好的,我做到了。现在我需要比较array = m[3]
两个不同的数组:
第一个数组必须与(if m[i]%2==0) ...
第二个数组必须与(if m[i]%2!=0) ...
因此,如果我从键盘键入 Main 数组中的那三行(m[3])
:
12345678
12345689
12344331
键入它们后,我需要在这两个不同的char(string)
数组integer
中%
设置 因此,在输入 3 行后,下一步是:
arrA=12345678
arrB=12345689 12344331
#include <iostream>
#include <conio.h>
#include <string>
#include <cstdlib>
#include <stdlib.h>
using namespace std;
int main()
{
int i,n;
char m[3];
for(i=1; i<=3; i++)
{
cout<<i<<". Fak nomer: "<<endl;
do
{
cin>>m[i];
gets(m);
}
while (strlen(m)!=7);
cout<<"As integer: "<<atoi(m);
}
}