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.
2 つの値を加算する必要があります。問題は、2 つの値が文字列として渡されることです。小数点以下2桁になる可能性があるため、整数に変換できません。
これをどのように行うことができるか誰にもアイデアがありますか?
それらを float に変換します。float.parse(値1) + float.parse(値2)