Whats wrong with the code cuz its not working for me | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

Whats wrong with the code cuz its not working for me

#include <iostream> using namespace std; int main() { cout << "C \n"; cout << "+ \n"; cout << "+"; return 0; } Please who can help me?

28th Feb 2022, 3:49 PM
Jamilu Abubakar Sadiq
Jamilu Abubakar Sadiq - avatar
4 Answers
+ 5
Jamilu Abubakar Sadiq There should not be space after each character.
28th Feb 2022, 4:07 PM
A͢J
A͢J - avatar
+ 4
Can you provide us with the error it throws? (It actually worked fine )
28th Feb 2022, 3:54 PM
Sammi Gul
+ 1
This should output: C + + Is this not the format you want? If you want “C++”, remove the space after the C and the + and get rid of the next lines (\n)
1st Mar 2022, 1:32 AM
Aidan
Aidan - avatar
+ 1
Please help me my friend You are making a text encryptor. It should take multiple words and output a combined version, where each word is separated by a dollar sign $. For example, for the words "hello", "how", "are", "you", the output should be "$hello$how$are$you
quot;. The given code declares a class named Add, with a constructor that takes one rest parameter. Complete the code by adding a print() method to the class, which should generate the requested output. class Add { constructor(...words) { this.words = words; } //your code goes here } print($ ) var x = new Add("hehe", "hoho", "haha", "hihi", "huhu"); var y = new Add("this", "is", "awesome"); var z = new Add("lorem", "ipsum", "dolor", "sit", "amet", "consectetur", "adipiscing", "elit"); x.print(); y.print(); z.print();
2nd Mar 2022, 1:49 PM
Jamilu Abubakar Sadiq
Jamilu Abubakar Sadiq - avatar