Triple Slash by CodeChum Admin Samurais are so awesome! I'd like to imitate their amazing sword skills some time but I just don't have the courage to harm myself, so I'd just like to print out three forward slashes (\) to digitally imitate the samurai's triple slash skill. Haha! Sounds easy, right? Then code it now! Output Three lines with a single backslash symbol. \ \ \
1
Expert's answer
2021-10-24T05:54:09-0400
#include<iostream>
using namespace std;
int main()
{
char backslash [] ="\\\\\\";
cout<<backslash;
}
Comments
Leave a comment