+ 1
Write a program to print "Every programmer is an author.". Don’t forget to put a punctuation mark at the end of the quote.
Please help me there.. what I've done so far #include <iostream> using namespace std; int main() { cout<<"\"Every programmer is an author:\""<<endl; return 0; }
7 Antworten
+ 1
Please show what you have tried so far
+ 1
Just use "cout<<" for it
0
bruh, you're just gonna need to print that out. simple.
0
not sure if you need to output quotes themselves... however, I'm sure your code doesn't output the correct punctuation mark (you are using ':' while model has '.')
0
you are required to leave a punctuation mark(.) at the end of your code
int main (){
cout<<"every programmer is an author."<<end;
}
0
Not work
- 1
Youre using the comment symbol and thats why the compiler skips the part that its supposed to print. Use only the double quotation marks