ランキング参加中プログラミング [TOP] 次>> Visual Studioで新規プロジェクトを作り、次のcppファイルを作成して下さい。 【MojiTest1.cpp】 #include <iostream> int main() { char a; std::cout << "y か n を入力してください-->" << std::endl; std::cin >> a; if ( a == 'y' ) { std::cout << "Yes" << std::endl; } else if (</iostream>…