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.
現在、
Xcode を使用して C++ でプログラミングを行っています。デバッグ ウィンドウを開いて、このような単純なプログラムを実行しましたが、出力がありません。ショートカット cmnd+r が機能しないため、実行されていません。そのショートカットを再び機能させるにはどうすればよいでしょうか。
#include <iostream> using namespace std; int main() { cout << "Hi"; return 0; }