/ 晓编程 /

记录详情

Compile Error

/in/foo.cc: In function 'int main()':
/in/foo.cc:7:9: error: no match for 'operator>>' (operand types are 'std::basic_istream<char>::__istream_type {aka std::basic_istream<char>}' and 'float')
   cin>>a>>b/100;
   ~~~~~~^~~~~~~
In file included from /usr/include/c++/6/iostream:40:0,
                 from /in/foo.cc:1:
/usr/include/c++/6/istream:168:7: note: candidate: std::basic_istream<_CharT, _Traits>::__istream_type& std::basic_istream<_CharT, _Traits>::operator>>(bool&) [with _CharT = char; _Traits = std::char_traits<char>; std::basic_istream<_CharT, _Traits>::__istream_type = std::basic_istream<char>] <near match>
       operator>>(bool& __n)
       ^~~~~~~~
/usr/include/c++/6/istream:168:7: note:   conversion of argument 1 would be ill-formed:
/in/foo.cc:7:12: error: invalid initialization of non-const reference of type 'bool&' from an rvalue of type 'bool'
   cin>>a>>b/100;
           ~^~~~
In file included from /usr/include/c++/6/iostream:40:0,
                 from /in/foo.cc:1:
/usr/include/c++/6/istream:172:7: note: candidate: std::basic_istream<_CharT, _Traits>& std::basic_istream<_CharT, _Traits>::operator>>(short int&) [with _CharT = char; _Traits = std::char_traits<char>] <near match>
       operator>>(short& __n);
       ^~~~~~~~
/usr/include/c++/6/istream:172:7: note:   conversion of argument 1 would be ill-formed:
/in/foo.cc:7:12: error: invalid initialization of non-const reference of type 'short int&' from an rvalue of type 'short int'
   cin>>a>>b/100;
           ~^~~~
In file included from /usr/include/c++/6/iostream:40:0,
                 from /in/foo.cc:1:
/usr/include/c++/6/istream:175:7: note: candidate: std::basic_istream<_CharT, _Traits>::__istream_type& std::basic_istream<_CharT, _Traits>::operator>>(short unsigned int&) [with _CharT = char; _Traits = std::char_traits<char>; std::basic_istream<_CharT, _Traits>::__istream_type = std::basic_istream<char>] <near match>
       operator>>(unsigned short& __n)
       ^~~~~~~~
/usr/include/c++/6/istream:175:7: note:   conversion of argument 1 would be ill-formed:
/in/foo.cc:7:12: error: invalid initialization of non-const reference of type 'short unsigned int&' from an rvalue of type 'short unsigned int'
   cin>>a>>b/100;
           ~^~~~
In file included from /usr/include/c++/6/iostream:40:0,
                 from /in/foo.cc:1:
/usr/include/c++/6/istream:179:7: note: candidate: std::basic_istream<_CharT, _Traits>& std::basic_istream<_CharT, _Traits>::operator>>(int&) [with _CharT = char; _Traits = std::char_traits<char>] <near match>
       operator>>(int& __n);
       ^~~~~~~~
/usr/include/c++/6/istream:179:7: note:   conversion of argument 1 would be ill-formed:
/in/foo.cc:7:12: error: invalid initialization of non-const reference of type 'int&' from an rvalue of type 'int'
   cin>>a>>b/100;
           ~^~~~
In file included from /usr/include/c++/6/iostream:40:0,
                 from /in/foo.cc:1:
/usr/include/c++/6/istream:182:7: note: candidate: std::basic_istream<_CharT, _Traits>::__istream_type& std::basic_istream<_CharT, _Traits>::operator>>(unsigned int&) [with _CharT = char; _Traits = std::char_traits<char>; std::basic_istream<_CharT, _Traits>::__istream_type = std::basic_istream<char>] <near match>
       operator>>(unsigned int& __n)
       ^~~~~~~~
/usr/include/c++/6/istream:182:7: note:   conversion of argument 1 would be ill-formed:
/in/foo.cc:7:12: error: invalid initialization of non-const reference of type 'unsigned int&' from an rvalue of type 'unsigned int'
   cin>>a>>b/100;
           ~^~~~
In file included from /usr/include/c++/6/iostream:40:0,
                 from /in/foo.cc:1:
/usr/include/c++/6/istream:186:7: note: candidate: std::basic_istream<_CharT, _Traits>::__istream_type& std::basic_istream<_CharT, _Traits>::operator>>(long int&) [with _CharT = char; _Traits = std::char_traits<char>; std::basic_istream<_CharT, _Traits>::__istream_type = std::basic_istream<char>] <near match>
       operator>>(long& __n)
       ^~~~~~~~
/usr/include/c++/6/istream:186:7: note:   conversion of argument 1 would be ill-formed:
/in/foo.cc:7:12: error: invalid initialization of non-const reference of type 'long int&' from an rvalue of type 'long int'
   cin>>a>>b/100;
           ~^~~~
In file included from /usr/include/c++/6/iostream:40:0,
                 from /in/foo.cc:1:
/usr/include/c++/6/istream:190:7: note: candidate: std::basic_istream<_CharT, _Traits>::__istream_type& std::basic_istream<_CharT, _Traits>::operator>>(long unsigned int&) [with _CharT = char; _Traits = std::char_traits<char>; std::basic_istream<_CharT, _Traits>::__istream_type = std::basic_istream<char>] <near match>
       operator>>(unsigned long& __n)
       ^~~~~~~~
/usr/include/c++/6/istream:190:7: note:   conversion of argument 1 would be ill-formed:
/in/foo.cc:7:12: error: invalid initialization of non-const reference of type 'long unsigned int&' from an rvalue of type 'long unsigned int'
   cin>>a>>b/100;
           ~^~~~
In file included from /usr/include/c++/6/iostream:40:0,
                 from /in/foo.cc:1:
/usr/include/c++/6/istream:195:7: note: candidate: std::basic_istream<_CharT, _Traits>::__istream_type& std::basic_istream<_CharT, _Traits>::operator>>(long long int&) [with _CharT = char; _Traits = std::char_traits<char>; std::basic_istream<_CharT, _Traits>::__istream_type = std::basic_istream<char>] <near match>
       operator>>(long long& __n)
       ^~~~~~~~
/usr/include/c++/6/istream:195:7: note:   conversion of argument 1 would be ill-formed:
/in/foo.cc:7:12: error: invalid initialization of non-const reference of type 'long long int&' from an rvalue of type 'long long int'
   cin>>a>>b/100;
           ~^~~~
In file included from /usr/include/c++/6/iostream:40:0,
                 from /in/foo.cc:1:
/usr/include/c++/6/istream:199:7: note: candidate: std::basic_istream<_CharT, _Traits>::__istream_type& std::basic_istream<_CharT, _Traits>::operator>>(long long unsigned int&) [with _CharT = char; _Traits = std::char_traits<char>; std::basic_istream<_CharT, _Traits>::__istream_type = std::basic_istream<char>] <near match>
       operator>>(unsigned long long& __n)
       ^~~~~~~~
/usr/include/c++/6/istream:199:7: note:   conversion of argument 1 would be ill-formed:
/in/foo.cc:7:12: error: invalid initialization of non-const reference of type 'long long unsigned int&' from an rvalue of type 'long long unsigned int'
   cin>>a>>b/100;
           ~^~~~
In file included from /usr/include/c++/6/iostream:40:0,
                 from /in/foo.cc:1:
/usr/include/c++/6/istream:214:7: note: candidate: std::basic_istream<_CharT, _Traits>::__istream_type& std::basic_istream<_CharT, _Traits>::operator>>(float&) [with _CharT = char; _Traits = std::char_traits<char>; std::basic_istream<_CharT, _Traits>::__istream_type = std::basic_istream<char>] <near match>
       operator>>(float& __f)
       ^~~~~~~~
/usr/include/c++/6/istream:214:7: note:   conversion of argument 1 would be ill-formed:
/in/foo.cc:7:12: error: invalid initialization of non-const reference of type 'float&' from an rvalue of type 'float'
   cin>>a>>b/100;
           ~^~~~
In file included from /usr/include/c++/6/iostream:40:0,
                 from /in/foo.cc:1:
/usr/include/c++/6/istream:218:7: note: candidate: std::basic_istream<_CharT, _Traits>::__istream_type& std::basic_istream<_CharT, _Traits>::operator>>(double&) [with _CharT = char; _Traits = std::char_traits<char>; std::basic_istream<_CharT, _Traits>::__istream_type = std::basic_istream<char>] <near match>
       operator>>(double& __f)
       ^~~~~~~~
/usr/include/c++/6/istream:218:7: note:   conversion of argument 1 would be ill-formed:
/in/foo.cc:7:12: error: invalid initialization of non-const reference of type 'double&' from an rvalue of type 'double'
   cin>>a>>b/100;
           ~^~~~
In file included from /usr/include/c++/6/iostream:40:0,
                 from /in/foo.cc:1:
/usr/include/c++/6/istream:222:7: note: candidate: std::basic_istream<_CharT, _Traits>::__istream_type& std::basic_istream<_CharT, _Traits>::operator>>(long double&) [with _CharT = char; _Traits = std::char_traits<char>; std::basic_istream<_CharT, _Traits>::__istream_type = std::b

信息

递交者
类型
递交
题目
P1021 压岁钱的雪球
语言
C++
递交时间
2020-03-11 20:46:20
评测时间
2020-03-11 20:46:20
评测机
分数
0
总耗时
0ms
峰值内存
0 Bytes