从键盘读入数组两种方式

#include <iostream>
using namespace std;

int main() {
    /*
     第一种方式:用cin 以' '作为结束
     */
    char s[100];
    cin>>s;
    cout<<s<<endl;
    
    // 第二种方式:用gets(x) 以回车作为结束
    char s2[100];
    gets(s2);
    cout<<s2<<endl;
    
    // 遍历字符数组
    // 方式一:用strlen(x)计算\0之前的实际元素个数
    int i;
    for(i=0;i<strlen(s2);i++){
        cout<<s2[i]<<endl;
    }
    // 方式二:判断当前字符!='\0'字符
    for(i=0;s2[i]!='\0';i++){
        cout<<s2[i]<<endl;
    }
    return 0;
}