Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
#include <iostream> int man(){ cout << "Hello world"; }
これがなぜか全く動かない
あなたがしたいint main、ではなくint man:
int main
int man
#include <iostream.h> int main(){ cout << "Hello world"; return(0); }
打ち間違え。「man」を「main」に変更します。また、最後に 0 を返すとよいでしょう。