Hello, OnlineGDB Q&A section lets you put your programming query to fellow community users. Asking a solution for whole assignment is strictly not allowed. You may ask for help where you are stuck. Try to add as much information as possible so that fellow users can know about your problem statement easily.

Не пойму, в чём ошибка..

0 votes
asked Mar 27, 2019 by Semen (120 points)
// Данный код выводит сообщение на экран
#include "std_lib_fasilitiec.h"
#int main ()
{
cout <<"Hello World!\n";
return 0;
}

2 Answers

0 votes
answered Mar 31, 2019 by anonymous
you don't need # front of int main() and as well \n inside cout you can use <<endl; and why are you using that library? use #include<iostream>
0 votes
answered Mar 31, 2019 by Roy372 (140 points)
Hello World!
Welcome to OnlineGDB Q&A, where you can ask questions related to programming and OnlineGDB IDE and receive answers from other members of the community.
...