##解決したい事
次のエラーが出て、コンパイルが出来ません。コンパイルできるようにするには、ソースファイルのどの部分をどのように直せばいいでしょう?教えてください。
##エラーメッセージ
C:\programming\DD-seconds>cl /EHsc DD-seconds.cpp Microsoft(R) C/C++ Optimizing Compiler Version 19.25.28610.4 for x86 Copyright (C) Microsoft Corporation. All rights reserved. DD-seconds.cpp DD-seconds.cpp(39): error C2451: 条件式の型 'std::basic_string<char,std::char_traits<char>,std::allocator<char>>' が間違っています。 DD-seconds.cpp(39): note: この変換を実行可能なユーザー定義変換演算子がないか、または演算子を呼び出せません。 DD-seconds.cpp(49): error C2451: 条件式の型 'std::basic_string<char,std::char_traits<char>,std::allocator<char>>' が間違っています。 DD-seconds.cpp(49): note: この変換を実行可能なユーザー定義変換演算子がないか、または演算子を呼び出せません。 DD-seconds.cpp(54): error C2451: 条件式の型 'std::basic_string<char,std::char_traits<char>,std::allocator<char>>' が間違っています。 DD-seconds.cpp(54): note: この変換を実行可能なユーザー定義変換演算子がないか、または演算子を呼び出せません。 DD-seconds.cpp(59): error C2451: 条件式の型 'std::basic_string<char,std::char_traits<char>,std::allocator<char>>' が間違っています。 DD-seconds.cpp(59): note: この変換を実行可能なユーザー定義変換演算子がないか、または演算子を呼び出せません。 C:\programming\DD-seconds>
##ソースコード
#include <iostream> using namespace std; int main() { string unit; //単位 int B_year; //生まれた年 int B_january; //生まれた月 int B_day; //生まれた日付 int C_year; //今の年 int C_january; //今の月 int C_day; //今の日付 int year; //差(年) int january; //差(月) int day; //差(日) int born; //生まれてからの時間 cout << "生まれてからどれくらいたったかを計算します。" << endl; //単位を聞く cout << "単位を選んでください。\n秒:s\t分:m\t時間:h\t日:d" << endl; cin >> unit; //生年月日を聞く cout << "生まれた年を入力してください:"; cin >> B_year; cout << "生まれた月を入力してください:"; cin >> B_january; cout << "生まれた日付を入力してください:"; cin >> B_day; //今の時間を聞く cout << "今の年を入力してください:"; cin >> C_year; cout << "今の月を入力してください:"; cin >> C_january; cout << "今の日付を入力してください:"; cin >> C_day; if (unit = "s") { //生まれてから何秒か計算する year = C_year - B_year; january = C_january - B_january; day = C_day - B_day; born = year * 31536000 + january * 2592000 + day * 86400; //出力する cout << born << "秒" << endl; } else if (unit = "m") { //生まれてから何分か計算する cout << "test" << endl; } else if (unit = "h") { //生まれてから何時間か計算する cout << "test" << endl; } else if (unit = "d") { //生まれてから何日たったか計算する cout << "test" << endl; } else { cout << "error" << endl; } }
##環境
テキストエディタ:VS Code
コンパイラ:VS 2019
文字コード:UTF-8 with BOM
回答3件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/03/25 10:56
2020/03/27 03:01