検索結果 2 件
- 5年前
- フォーラム: C言語何でも質問掲示板
- トピック: 助けてほしいです
- 返信数: 2
- 閲覧数: 4325
Re: 助けてほしいです
この問題が全然わかりません。ヒントが欲しいですキャプチャ2.PNG 下記が自分で組んだものです #include <iostream> using namespace std; void func() { cout << "Hello World!" << endl << "ようこそ" << endl << "C言語の世界へ!"; return ; } int main() { int a; cout << "メッセージを表示しますか? (0:終了する 1:表示する) >"; cin >> a; for (;;) { func(); if (a != 0) { break; } } cout...
- 5年前
- フォーラム: C言語何でも質問掲示板
- トピック: 助けてほしいです
- 返信数: 2
- 閲覧数: 4325
助けてほしいです
この問題が全然わかりません。ヒントが欲しいです キャプチャ2.PNG 下記が自分で組んだものです #include <iostream> using namespace std; void func() { cout << "Hello World!" << endl << "ようこそ" << endl << "C言語の世界へ!"; return ; } int main() { int a; cout << "メッセージを表示しますか? (0:終了する 1:表示する) >"; cin >> a; for (;;) { func(); if (a != 0) { break; } } cout...