Answer:
C++ code is explained below
Explanation:
sequence.cpp
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
char randomChar(){
char arr[4] = {'0','1','.',' '};
int index = rand()%4;
return arr[index];
}
void printLine(char c, int spot, int len){
for(int i=0;i<len;i++)
cout<<randomChar();
cout<<c;
for(int i=0;i<len;i++){
cout<<randomChar();
}
cout<<endl;
}
int main(){
cout<<"What do you want printed vertically?"<<endl;
string seq;
getline(cin,seq);
srand(time(NULL));
char cleanedSeq[10000]; // to store sequence without spaces or tabs
int i=0,k=0;
while(seq[i]!='\0'){
if(seq[i]!=' ' && seq[i]!='\t' && seq[i]!='\n'){
cleanedSeq[k++]=seq[i];
}
i+=1;
}
cleanedSeq[k]='\0';
for(int i=0;cleanedSeq[i]!='\0';i++){
printLine(cleanedSeq[i],9,9);
if(cleanedSeq[i]=='0') //if we encounter any zero we stop printing
break;
}
return 0;
}