#1345
Să se scrie un program care citește un număr natural k și afișează cel mai mic număr natural n mai mare decât 1, care nu este divizibil cu primele k numere prime și nu este prim.
| Problema | kprim | Operații I/O |
kprim.in/kprim.out
|
|---|---|---|---|
| Limita timp | 0.1 secunde | Limita memorie |
Total: 64 MB
/
Stivă 8 MB
|
| Id soluție | #64325509 | Utilizator | |
| Fișier | kprim.cpp | Dimensiune | 446 B |
| Data încărcării | 29 Aprilie 2026, 18:33 | Scor/rezultat | Eroare de compilare |
kprim.cpp: In function ‘int main()’: kprim.cpp:8:7: error: no match for ‘operator>>’ (operand types are ‘std::ofstream’ {aka ‘std::basic_ofstream<char>’} and ‘int’) 8 | in>>k; | ~~^~~ | | | | | int | std::ofstream {aka std::basic_ofstream<char>} kprim.cpp:8:7: note: candidate: ‘operator>>(int, int)’ (built-in) 8 | in>>k; | ~~^~~ kprim.cpp:8:7: note: no known conversion for argument 1 from ‘std::ofstream’ {aka ‘std::basic_ofstream<char>’} to ‘int’ In file included from /usr/include/c++/13/string:55, from /usr/include/c++/13/bitset:52, from /usr/include/x86_64-linux-gnu/c++/13/bits/stdc++.h:52, from kprim.cpp:1: /usr/include/c++/13/bits/basic_string.tcc:827:5: note: candidate: ‘template<class _CharT, class _Traits, class _Alloc> std::basic_istream<_CharT, _Traits>& std::operator>>(basic_istream<_CharT, _Traits>&, __cxx11::basic_string<_CharT, _Traits, _Alloc>&)’ 827 | operator>>(basic_istream<_CharT, _Traits>& __in, | ^~~~~~~~ /usr/include/c++/13/bits/basic_string.tcc:827:5: note: template argument deduction/substitution failed: kprim.cpp:8:9: note: ‘std::ofstream’ {aka ‘std::basic_ofstream<char>’} is not derived from ‘std::basic_istream<_CharT, _Traits>’ 8 | in>>k; | ^ /usr/include/c++/13/bitset:1593:5: note: candidate: ‘template<class _CharT, class _Traits, long unsigned int _Nb> std::basic_istream<_CharT, _Traits>& std::operator>>(basic_istream<_CharT, _Traits>&, bitset<_Nb>&)’ 1593 | operator>>(std::basic_istream<_CharT, _Traits>& __is, bitset<_Nb>& __x) | ^~~~~~~~ /usr/include/c++/13/bitset:1593:5: note: template argument deduction/substitution failed: kprim.cpp:8:9: note: ‘std::ofstream’ {aka ‘std::basic_ofstream<char>’} is not derived from ‘std::basic_istream<_CharT, _Traits>’ 8 | in>>k; | ^ In file included from /usr/include/c++/13/istream:1106, from /usr/include/c++/13/sstream:40, from /usr/include/c++/13/complex:45, from /usr/include/c++/13/ccomplex:39, from /usr/include/x86_64-linux-gnu/c++/13/bits/stdc++.h:127: /usr/include/c++/13/bits/istream.tcc:975:5: note: candidate: ‘template<class _CharT, class _Traits> std::basic_istream<_CharT, _Traits>& std::operator>>(basic_istream<_CharT, _Traits>&, _CharT&)’ 975 | operator>>(basic_istream<_CharT, _Traits>& __in, _CharT& __c) | ^~~~~~~~ /usr/include/c++/13/bits/istream.tcc:975:5: note: template argument deduction/substitution failed: kprim.cpp:8:9: note: ‘std::ofstream’ {aka ‘std::basic_ofstream<char>’} is not derived from ‘std::basic_istream<_CharT, _Traits>’ 8 | in>>k; | ^ /usr/include/c++/13/istream:846:5: note: candidate: ‘template<class _Traits> std::basic_istream<char, _Traits>& std::operator>>(basic_istream<char, _Traits>&, unsigned char&)’ 846 | operator>>(basic_istream<char, _Traits>& __in, unsigned char& __c) | ^~~~~~~~ /usr/include/c++/13/istream:846:5: note: template argument deduction/substitution failed: kprim.cpp:8:9: note: ‘std::ofstream’ {aka ‘std::basic_ofstream<char>’} is not derived from ‘std::basic_istream<char, _Traits>’ 8 | in>>k; | ^ /usr/include/c++/13/istream:851:5: note: candidate: ‘template<class _Traits> std::basic_istream<char, _Traits>& std::operator>>(basic_istream<char, _Traits>&, signed char&)’ 851 | operator>>(basic_istream<char, _Traits>& __in, signed char& __c) | ^~~~~~~~ /usr/include/c++/13/istream:851:5: note: template argument deduction/substitution failed: kprim.cpp:8:9: note: ‘std::ofstream’ {aka ‘std::basic_ofstream<char>’} is not derived from ‘std::basic_istream<char, _Traits>’ 8 | in>>k; | ^ /usr/include/c++/13/istream:893:5: note: candidate: ‘template<class _CharT, class _Traits> std::basic_istream<_CharT, _Traits>& std::operator>>(basic_istream<_CharT, _Traits>&, _CharT*)’ 893 | operator>>(basic_istream<_CharT, _Traits>& __in, _CharT* __s) | ^~~~~~~~ /usr/include/c++/13/istream:893:5: note: template argument deduction/substitution failed: kprim.cpp:8:9: note: ‘std::ofstream’ {aka ‘std::basic_ofstream<char>’} is not derived from ‘std::basic_istream<_CharT, _Traits>’ 8 | in>>k; | ^ /usr/include/c++/13/istream:936:5: note: candidate: ‘template<class _Traits> std::basic_istream<char, _Traits>& std::operator>>(basic_istream<char, _Traits>&, unsigned char*)’ 936 | operator>>(basic_istream<char, _Traits>& __in, unsigned char* __s) | ^~~~~~~~ /usr/include/c++/13/istream:936:5: note: template argument deduction/substitution failed: kprim.cpp:8:9: note: ‘std::ofstream’ {aka ‘std::basic_ofstream<char>’} is not derived from ‘std::basic_istream<char, _Traits>’ 8 | in>>k; | ^ /usr/include/c++/13/istream:942:5: note: candidate: ‘template<class _Traits> std::basic_istream<char, _Traits>& std::operator>>(basic_istream<char, _Traits>&, signed char*)’ 942 | operator>>(basic_istream<char, _Traits>& __in, signed char* __s) | ^~~~~~~~ /usr/include/c++/13/istream:942:5: note: template argument deduction/substitution failed: kprim.cpp:8:9: note: ‘std::ofstream’ {aka ‘std::basic_ofstream<char>’} is not derived from ‘std::basic_istream<char, _Traits>’ 8 | in>>k; | ^ /usr/include/c++/13/istream:1096:5: note: candidate: ‘template<class _Istream, class _Tp> _Istream&& std::operator>>(_Istream&&, _Tp&&)’ 1096 | operator>>(_Istream&& __is, _Tp&& __x) | ^~~~~~~~ /usr/include/c++/13/istream:1096:5: note: template argument deduction/substitution failed: /usr/include/c++/13/istream: In substitution of ‘template<class _Istream, class _Tp> _Istream&& std::operator>>(_Istream&&, _Tp&&) [with _Istream = std::basic_ofstream<char>&; _Tp = int&]’: kprim.cpp:8:9: required from here /usr/include/c++/13/istream:1096:5: error: no type named ‘type’ in ‘struct std::enable_if<false, void>’ /usr/include/c++/13/complex:504:5: note: candidate: ‘template<class _Tp, class _CharT, class _Traits> std::basic_istream<_CharT, _Traits>& std::operator>>(basic_istream<_CharT, _Traits>&, complex<_Tp>&)’ 504 | operator>>(basic_istream<_CharT, _Traits>& __is, complex<_Tp>& __x) | ^~~~~~~~ /usr/include/c++/13/complex:504:5: note: template argument deduction/substitution failed: kprim.cpp:8:9: note: ‘std::ofstream’ {aka ‘std::basic_ofstream<char>’} is not derived from ‘std::basic_istream<_CharT, _Traits>’ 8 | in>>k; | ^ In file included from /usr/include/x86_64-linux-gnu/c++/13/bits/stdc++.h:143: /usr/include/c++/13/iomanip:73:5: note: candidate: ‘template<class _CharT, class _Traits> std::basic_istream<_CharT, _Traits>& std::operator>>(basic_istream<_CharT, _Traits>&, _Resetiosflags)’ 73 | operator>>(basic_istream<_CharT, _Traits>& __is, _Resetiosflags __f) | ^~~~~~~~ /usr/include/c++/13/iomanip:73:5: note: template argument deduction/substitution failed: kprim.cpp:8:9: note: ‘std::ofstream’ {aka ‘std::basic_ofstream<char>’} is not derived from ‘std::basic_istream<_CharT, _Traits>’ 8 | in>>k; | ^ /usr/include/c++/13/iomanip:103:5: note: candidate: ‘template<class _CharT, class _Traits> std::basic_istream<_CharT, _Traits>& std::operator>>(basic_istream<_CharT, _Traits>&, _Setiosflags)’ 103 | operator>>(basic_istream<_CharT, _Traits>& __is, _Setiosflags __f) | ^~~~~~~~ /usr/include/c++/13/iomanip:103:5: note: template argument deduction/substitution failed: kprim.cpp:8:9: note: ‘std::ofstream’ {aka ‘std::basic_ofstream<char>’} is not derived from ‘std::basic_istream<_CharT, _Traits>’ 8 | in>>k; | ^ /usr/include/c++/13/iomanip:134:5: note: candidate: ‘template<class _CharT, class _Traits> std::basic_istream<_CharT, _Traits>& std::operator>>(basic_istream<_CharT, _Traits>&, _Setbase)’ 134 | operator>>(basic_istream<_CharT, _Traits>& __is, _Setbase __f) | ^~~~~~~~ /usr/include/c++/13/iomanip:134:5: note: template argument deduction/substitution failed: kprim.cpp:8:9: note: ‘std::ofstream’ {aka ‘std::basic_ofstream<char>’} is not derived from ‘std::basic_istream<_CharT, _Traits>’ 8 | in>>k; | ^ /usr/include/c++/13/iomanip:172:5: note: candidate: ‘template<class _CharT, class _Traits> std::basic_istream<_CharT, _Traits>& std::operator>>(basic_istream<_CharT, _Traits>&, _Setfill<_CharT>)’ 172 | operator>>(basic_istream<_CharT, _Traits>& __is, _Setfill<_CharT> __f) | ^~~~~~~~ /usr/include/c++/13/iomanip:172:5: note: template argument deduction/substitution failed: kprim.cpp:8:9: note: ‘std::ofstream’ {aka ‘std::basic_ofstream<char>’} is not derived from ‘std::basic_istream<_CharT, _Traits>’ 8 | in>>k; | ^ /usr/include/c++/13/iomanip:202:5: note: candidate: ‘template<class _CharT, class _Traits> std::basic_istream<_CharT, _Traits>& std::operator>>(basic_istream<_CharT, _Traits>&, _Setprecision)’ 202 | operator>>(basic_istream<_CharT, _Traits>& __is, _Setprecision __f) | ^~~~~~~~ /usr/include/c++/13/iomanip:202:5: note: template argument deduction/substitution failed: kprim.cpp:8:9: note: ‘std::ofstream’ {aka ‘std::basic_ofstream<char>’} is not derived from ‘std::basic_istream<_CharT, _Traits>’ 8 | in>>k; | ^ /usr/include/c++/13/iomanip:232:5: note: candidate: ‘template<class _CharT, class _Traits> std::basic_istream<_CharT, _Traits>& std::operator>>(basic_istream<_CharT, _Traits>&, _Setw)’ 232 | operator>>(basic_istream<_CharT, _Traits>& __is, _Setw __f) | ^~~~~~~~ /usr/include/c++/13/iomanip:232:5: note: template argument deduction/substitution failed: kprim.cpp:8:9: note: ‘std::ofstream’ {aka ‘std::basic_ofstream<char>’} is not derived from ‘std::basic_istream<_CharT, _Traits>’ 8 | in>>k; | ^ /usr/include/c++/13/iomanip:266:5: note: candidate: ‘template<class _CharT, class _Traits, class _MoneyT> std::basic_istream<_CharT, _Traits>& std::operator>>(basic_istream<_CharT, _Traits>&, _Get_money<_MoneyT>)’ 266 | operator>>(basic_istream<_CharT, _Traits>& __is, _Get_money<_MoneyT> __f) | ^~~~~~~~ /usr/include/c++/13/iomanip:266:5: note: template argument deduction/substitution failed: kprim.cpp:8:9: note: ‘std::ofstream’ {aka ‘std::basic_ofstream<char>’} is not derived from ‘std::basic_istream<_CharT, _Traits>’ 8 | in>>k; | ^ /usr/include/c++/13/iomanip:420:5: note: candidate: ‘template<class _CharT, class _Traits> std::basic_istream<_CharT, _Traits>& std::operator>>(basic_istream<_CharT, _Traits>&, _Get_time<_CharT>)’ 420 | operator>>(basic_istream<_CharT, _Traits>& __is, _Get_time<_CharT> __f) | ^~~~~~~~ /usr/include/c++/13/iomanip:420:5: note: template argument deduction/substitution failed: kprim.cpp:8:9: note: ‘std::ofstream’ {aka ‘std::basic_ofstream<char>’} is not derived from ‘std::basic_istream<_CharT, _Traits>’ 8 | in>>k; | ^ In file included from /usr/include/c++/13/valarray:605, from /usr/include/x86_64-linux-gnu/c++/13/bits/stdc++.h:166: /usr/include/c++/13/bits/valarray_after.h:414:5: note: candidate: ‘template<class _Dom1, class _Dom2> std::_Expr<std::__detail::_BinClos<std::__shift_right, std::_Expr, std::_Expr, _Dom1, _Dom2>, typename std::__fun<std::__shift_right, typename _Dom1::value_type>::result_type> std::operator>>(const _Expr<_Dom1, typename _Dom1::value_type>&, const _Expr<_Dom2, typename _Dom2::value_type>&)’ 414 | _DEFINE_EXPR_BINARY_OPERATOR(>>, struct std::__shift_right) | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~ /usr/include/c++/13/bits/valarray_after.h:414:5: note: template argument deduction/substitution failed: kprim.cpp:8:9: note: ‘std::ofstream’ {aka ‘std::basic_ofstream<char>’} is not derived from ‘const std::_Expr<_Dom1, typename _Dom1::value_type>’ 8 | in>>k; | ^ /usr/include/c++/13/bits/valarray_after.h:414:5: note: candidate: ‘template<class _Dom> std::_Expr<std::__detail::_BinClos<std::__shift_right, std::_Expr, std::_Constant, _Dom, typename _Dom::value_type>, typename std::__fun<std::__shift_right, typename _Dom1::value_type>::result_type> std::operator>>(const _Expr<_Dom1, typename _Dom1::value_type>&, const typename _Dom::value_type&)’ 414 | _DEFINE_EXPR_BINARY_OPERATOR(>>, struct std::__shift_right) | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~ /usr/include/c++/13/bits/valarray_after.h:414:5: note: template argument deduction/substitution failed: kprim.cpp:8:9: note: ‘std::ofstream’ {aka ‘std::basic_ofstream<char>’} is not derived from ‘const std::_Expr<_Dom1, typename _Dom1::value_type>’ 8 | in>>k; | ^ /usr/include/c++/13/bits/valarray_after.h:414:5: note: candidate: ‘template<class _Dom> std::_Expr<std::__detail::_BinClos<std::__shift_right, std::_Constant, std::_Expr, typename _Dom::value_type, _Dom>, typename std::__fun<std::__shift_right, typename _Dom1::value_type>::result_type> std::operator>>(const typename _Dom::value_type&, const _Expr<_Dom1, typename _Dom1::value_type>&)’ 414 | _DEFINE_EXPR_BINARY_OPERATOR(>>, struct std::__shift_right) | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~ /usr/include/c++/13/bits/valarray_after.h:414:5: note: template argument deduction/substitution failed: kprim.cpp:8:9: note: mismatched types ‘const std::_Expr<_Dom1, typename _Dom1::value_type>’ and ‘int’ 8 | in>>k; | ^ /usr/include/c++/13/bits/valarray_after.h:414:5: note: candidate: ‘template<class _Dom> std::_Expr<std::__detail::_BinClos<std::__shift_right, std::_Expr, std::_ValArray, _Dom, typename _Dom::value_type>, typename std::__fun<std::__shift_right, typename _Dom1::value_type>::result_type> std::operator>>(const _Expr<_Dom1, typename _Dom1::value_type>&, const valarray<typename _Dom::value_type>&)’ 414 | _DEFINE_EXPR_BINARY_OPERATOR(>>, struct std::__shift_right) | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~ /usr/include/c++/13/bits/valarray_after.h:414:5: note: template argument deduction/substitution failed: kprim.cpp:8:9: note: ‘std::ofstream’ {aka ‘std::basic_ofstream<char>’} is not derived from ‘const std::_Expr<_Dom1, typename _Dom1::value_type>’ 8 | in>>k; | ^ /usr/include/c++/13/bits/valarray_after.h:414:5: note: candidate: ‘template<class _Dom> std::_Expr<std::__detail::_BinClos<std::__shift_right, std::_ValArray, std::_Expr, typename _Dom::value_type, _Dom>, typename std::__fun<std::__shift_right, typename _Dom1::value_type>::result_type> std::operator>>(const valarray<typename _Dom::value_type>&, const _Expr<_Dom1, typename _Dom1::value_type>&)’ 414 | _DEFINE_EXPR_BINARY_OPERATOR(>>, struct std::__shift_right) | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~ /usr/include/c++/13/bits/valarray_after.h:414:5: note: template argument deduction/substitution failed: kprim.cpp:8:9: note: mismatched types ‘const std::_Expr<_Dom1, typename _Dom1::value_type>’ and ‘int’ 8 | in>>k; | ^ /usr/include/c++/13/valarray:1205:1: note: candidate: ‘template<class _Tp> std::_Expr<std::__detail::_BinClos<std::__shift_right, std::_ValArray, std::_ValArray, _Tp, _Tp>, typename std::__fun<std::__shift_right, _Tp>::result_type> std::operator>>(const valarray<_Tp>&, const valarray<_Tp>&)’ 1205 | _DEFINE_BINARY_OPERATOR(>>, __shift_right) | ^~~~~~~~~~~~~~~~~~~~~~~ /usr/include/c++/13/valarray:1205:1: note: template argument deduction/substitution failed: kprim.cpp:8:9: note: ‘std::ofstream’ {aka ‘std::basic_ofstream<char>’} is not derived from ‘const std::valarray<_Tp>’ 8 | in>>k; | ^ /usr/include/c++/13/valarray:1205:1: note: candidate: ‘template<class _Tp> std::_Expr<std::__detail::_BinClos<std::__shift_right, std::_ValArray, std::_Constant, _Tp, _Tp>, typename std::__fun<std::__shift_right, _Tp>::result_type> std::operator>>(const valarray<_Tp>&, const typename valarray<_Tp>::value_type&)’ 1205 | _DEFINE_BINARY_OPERATOR(>>, __shift_right) | ^~~~~~~~~~~~~~~~~~~~~~~ /usr/include/c++/13/valarray:1205:1: note: template argument deduction/substitution failed: kprim.cpp:8:9: note: ‘std::ofstream’ {aka ‘std::basic_ofstream<char>’} is not derived from ‘const std::valarray<_Tp>’ 8 | in>>k; | ^ /usr/include/c++/13/valarray:1205:1: note: candidate: ‘template<class _Tp> std::_Expr<std::__detail::_BinClos<std::__shift_right, std::_Constant, std::_ValArray, _Tp, _Tp>, typename std::__fun<std::__shift_right, _Tp>::result_type> std::operator>>(const typename valarray<_Tp>::value_type&, const valarray<_Tp>&)’ 1205 | _DEFINE_BINARY_OPERATOR(>>, __shift_right) | ^~~~~~~~~~~~~~~~~~~~~~~ /usr/include/c++/13/valarray:1205:1: note: template argument deduction/substitution failed: kprim.cpp:8:9: note: mismatched types ‘const std::valarray<_Tp>’ and ‘int’ 8 | in>>k; | ^ In file included from /usr/include/c++/13/random:53, from /usr/include/x86_64-linux-gnu/c++/13/bits/stdc++.h:179: /usr/include/c++/13/bits/random.tcc:930:5: note: candidate: ‘template<class _IntType, class _CharT, class _Traits> std::basic_istream<_CharT, _Traits>& std::operator>>(basic_istream<_CharT, _Traits>&, uniform_int_distribution<_IntType>&)’ 930 | operator>>(std::basic_istream<_CharT, _Traits>& __is, | ^~~~~~~~ /usr/include/c++/13/bits/random.tcc:930:5: note: template argument deduction/substitution failed: kprim.cpp:8:9: note: ‘std::ofstream’ {aka ‘std::basic_ofstream<char>’} is not derived from ‘std::basic_istream<_CharT, _Traits>’ 8 | in>>k; | ^ /usr/include/c++/13/bits/random.tcc:991:5: note: candidate: ‘template<class _RealType, class _CharT, class _Traits> std::basic_istream<_CharT, _Traits>& std::operator>>(basic_istream<_CharT, _Traits>&, uniform_real_distribution<_IntType>&)’ 991 | operator>>(std::basic_istream<_CharT, _Traits>& __is, | ^~~~~~~~ /usr/include/c++/13/bits/random.tcc:991:5: note: template argument deduction/substitution failed: kprim.cpp:8:9: note: ‘std::ofstream’ {aka ‘std::basic_ofstream<char>’} is not derived from ‘std::basic_istream<_CharT, _Traits>’ 8 | in>>k; | ^ /usr/include/c++/13/bits/random.tcc:2168:5: note: candidate: ‘template<class _RealType, class _CharT, class _Traits> std::basic_istream<_CharT, _Traits>& std::operator>>(basic_istream<_CharT, _Traits>&, cauchy_distribution<_RealType>&)’ 2168 | operator>>(std::basic_istream<_CharT, _Traits>& __is, | ^~~~~~~~ /usr/include/c++/13/bits/random.tcc:2168:5: note: template argument deduction/substitution failed: kprim.cpp:8:9: note: ‘std::ofstream’ {aka ‘std::basic_ofstream<char>’} is not derived from ‘std::basic_istream<_CharT, _Traits>’ 8 | in>>k; | ^ In file included from /usr/include/c++/13/random:51: /usr/include/c++/13/bits/random.h:3830:5: note: candidate: ‘template<class _CharT, class _Traits> std::basic_istream<_CharT, _Traits>& std::operator>>(basic_istream<_CharT, _Traits>&, bernoulli_distribution&)’ 3830 | operator>>(std::basic_istream<_CharT, _Traits>& __is, | ^~~~~~~~ /usr/include/c++/13/bits/random.h:3830:5: note: template argument deduction/substitution failed: kprim.cpp:8:9: note: ‘std::ofstream’ {aka ‘std::basic_ofstream<char>’} is not derived from ‘std::basic_istream<_CharT, _Traits>’ 8 | in>>k; | ^ /usr/include/c++/13/bits/random.tcc:1133:5: note: candidate: ‘template<class _IntType, class _CharT, class _Traits> std::basic_istream<_CharT, _Traits>& std::operator>>(basic_istream<_CharT, _Traits>&, geometric_distribution<_IntType>&)’ 1133 | operator>>(std::basic_istream<_CharT, _Traits>& __is, | ^~~~~~~~ /usr/include/c++/13/bits/random.tcc:1133:5: note: template argument deduction/substitution failed: kprim.cpp:8:9: note: ‘std::ofstream’ {aka ‘std::basic_ofstream<char>’} is not derived from ‘std::basic_istream<_CharT, _Traits>’ 8 | in>>k; | ^ /usr/include/c++/13/bits/random.tcc:1784:5: note: candidate: ‘template<class _RealType, class _CharT, class _Traits> std::basic_istream<_CharT, _Traits>& std::operator>>(basic_istream<_CharT, _Traits>&, exponential_distribution<_RealType>&)’ 1784 | operator>>(std::basic_istream<_CharT, _Traits>& __is, | ^~~~~~~~ /usr/include/c++/13/bits/random.tcc:1784:5: note: template argument deduction/substitution failed: kprim.cpp:8:9: note: ‘std::ofstream’ {aka ‘std::basic_ofstream<char>’} is not derived from ‘std::basic_istream<_CharT, _Traits>’ 8 | in>>k; | ^ /usr/include/c++/13/bits/random.tcc:2562:5: note: candidate: ‘template<class _RealType, class _CharT, class _Traits> std::basic_istream<_CharT, _Traits>& std::operator>>(basic_istream<_CharT, _Traits>&, weibull_distribution<_RealType>&)’ 2562 | operator>>(std::basic_istream<_CharT, _Traits>& __is, | ^~~~~~~~ /usr/include/c++/13/bits/random.tcc:2562:5: note: template argument deduction/substitution failed: kprim.cpp:8:9: note: ‘std::ofstream’ {aka ‘std::basic_ofstream<char>’} is not derived from ‘std::basic_istream<_CharT, _Traits>’ 8 | in>>k; | ^ /usr/include/c++/13/bits/random.tcc:2636:5: note: candidate: ‘template<class _RealType, class _CharT, class _Traits> std::basic_istream<_CharT, _Traits>& std::operator>>(basic_istream<_CharT, _Traits>&, extreme_value_distribution<_RealType>&)’ 2636 | operator>>(std::basic_istream<_CharT, _Traits>& __is, | ^~~~~~~~ /usr/include/c++/13/bits/random.tcc:2636:5: note: template argument deduction/substitution failed: kprim.cpp:8:9: note: ‘std::ofstream’ {aka ‘std::basic_ofstream<char>’} is not derived from ‘std::basic_istream<_CharT, _Traits>’ 8 | in>>k; | ^ /usr/include/c++/13/bits/random.tcc:177:5: note: candidate: ‘template<class _UIntType, _UIntType __a, _UIntType __c, _UIntType __m, class _CharT, class _Traits> std::basic_istream<_CharT, _Traits>& std::operator>>(basic_istream<_CharT, _Traits>&, linear_congruential_engine<_UIntType, __a, __c, __m>&)’ 177 | operator>>(std::basic_istream<_CharT, _Traits>& __is, | ^~~~~~~~ /usr/include/c++/13/bits/random.tcc:177:5: note: template argument deduction/substitution failed: kprim.cpp:8:9: note: ‘std::ofstream’ {aka ‘std::basic_ofstream<char>’} is not derived from ‘std::basic_istream<_CharT, _Traits>’ 8 | in>>k; | ^ /usr/include/c++/13/bits/random.tcc:504:5: note: candidate: ‘template<class _UIntType1, long unsigned int __w1, long unsigned int __n1, long unsigned int __m1, long unsigned int __r1, _UIntType1 __a1, long unsigned int __u1, _UIntType1 __d1, long unsigned int __s1, _UIntType1 __b1, long unsigned int __t1, _UIntType1 __c1, long unsigned int __l1, _UIntType1 __f1, class _CharT, class _Traits> std::basic_istream<_CharT, _Traits>& std::operator>>(basic_istream<_CharT, _Traits>&, mersenne_twister_engine<_UIntType, __w, __n, __m, __r, __a, __u, __d, __s, __b, __t, __c, __l, __f>&)’ 504 | operator>>(std::basic_istream<_CharT, _Traits>& __is, | ^~~~~~~~ /usr/include/c++/13/bits/random.tcc:504:5: note: template argument deduction/substitution failed: kprim.cpp:8:9: note: ‘std::ofstream’ {aka ‘std::basic_ofstream<char>’} is not derived from ‘std::basic_istream<_CharT, _Traits>’ 8 | in>>k; | ^ /usr/include/c++/13/bits/random.tcc:659:5: note: candidate: ‘template<class _UIntType, long unsigned int __w, long unsigned int __s, long unsigned int __r, class _CharT, class _Traits> std::basic_istream<_CharT, _Traits>& std::operator>>(basic_istream<_CharT, _Traits>&, subtract_with_carry_engine<_UIntType, __w, __s, __r>&)’ 659 | operator>>(std::basic_istream<_CharT, _Traits>& __is, | ^~~~~~~~ /usr/include/c++/13/bits/random.tcc:659:5: note: template argument deduction/substitution failed: kprim.cpp:8:9: note: ‘std::ofstream’ {aka ‘std::basic_ofstream<char>’} is not derived from ‘std::basic_istream<_CharT, _Traits>’ 8 | in>>k; | ^ /usr/include/c++/13/bits/random.tcc:726:5: note: candidate: ‘template<class _RandomNumberEngine, long unsigned int __p, long unsigned int __r, class _CharT, class _Traits> std::basic_istream<_CharT, _Traits>& std::operator>>(basic_istream<_CharT, _Traits>&, discard_block_engine<_RandomNumberEngine, __p, __r>&)’ 726 | operator>>(std::basic_istream<_CharT, _Traits>& __is, | ^~~~~~~~ /usr/include/c++/13/bits/random.tcc:726:5: note: template argument deduction/substitution failed: kprim.cpp:8:9: note: ‘std::ofstream’ {aka ‘std::basic_ofstream<char>’} is not derived from ‘std::basic_istream<_CharT, _Traits>’ 8 | in>>k; | ^ /usr/include/c++/13/bits/random.tcc:890:5: note: candidate: ‘template<class _RandomNumberEngine, long unsigned int __k, class _CharT, class _Traits> std::basic_istream<_CharT, _Traits>& std::operator>>(basic_istream<_CharT, _Traits>&, shuffle_order_engine<_RandomNumberEngine, __k>&)’ 890 | operator>>(std::basic_istream<_CharT, _Traits>& __is, | ^~~~~~~~ /usr/include/c++/13/bits/random.tcc:890:5: note: template argument deduction/substitution failed: kprim.cpp:8:9: note: ‘std::ofstream’ {aka ‘std::basic_ofstream<char>’} is not derived from ‘std::basic_istream<_CharT, _Traits>’ 8 | in>>k; | ^ /usr/include/c++/13/bits/random.tcc:1248:5: note: candidate: ‘template<class _IntType, class _CharT, class _Traits> std::basic_istream<_CharT, _Traits>& std::operator>>(basic_istream<_CharT, _Traits>&, negative_binomial_distribution<_IntType>&)’ 1248 | operator>>(std::basic_istream<_CharT, _Traits>& __is, | ^~~~~~~~ /usr/include/c++/13/bits/random.tcc:1248:5: note: template argument deduction/substitution failed: kprim.cpp:8:9: note: ‘std::ofstream’ {aka ‘std::basic_ofstream<char>’} is not derived from ‘std::basic_istream<_CharT, _Traits>’ 8 | in>>k; | ^ /usr/include/c++/13/bits/random.tcc:1458:5: note: candidate: ‘template<class _IntType, class _CharT, class _Traits> std::basic_istream<_CharT, _Traits>& std::operator>>(basic_istream<_CharT, _Traits>&, poisson_distribution<_IntType>&)’ 1458 | operator>>(std::basic_istream<_CharT, _Traits>& __is, | ^~~~~~~~ /usr/include/c++/13/bits/random.tcc:1458:5: note: template argument deduction/substitution failed: kprim.cpp:8:9: note: ‘std::ofstream’ {aka ‘std::basic_ofstream<char>’} is not derived from ‘std::basic_istream<_CharT, _Traits>’ 8 | in>>k; | ^ /usr/include/c++/13/bits/random.tcc:1725:5: note: candidate: ‘template<class _IntType, class _CharT, class _Traits> std::basic_istream<_CharT, _Traits>& std::operator>>(basic_istream<_CharT, _Traits>&, binomial_distribution<_IntType>&)’ 1725 | operator>>(std::basic_istream<_CharT, _Traits>& __is, | ^~~~~~~~ /usr/include/c++/13/bits/random.tcc:1725:5: note: template argument deduction/substitution failed: kprim.cpp:8:9: note: ‘std::ofstream’ {aka ‘std::basic_ofstream<char>’} is not derived from ‘std::basic_istream<_CharT, _Traits>’ 8 | in>>k; | ^ /usr/include/c++/13/bits/random.tcc:1946:5: note: candidate: ‘template<class _RealType1, class _CharT, class _Traits> std::basic_istream<_CharT, _Traits>& std::operator>>(basic_istream<_CharT, _Traits>&, normal_distribution<_RealType>&)’ 1946 | operator>>(std::basic_istream<_CharT, _Traits>& __is, | ^~~~~~~~ /usr/include/c++/13/bits/random.tcc:1946:5: note: template argument deduction/substitution failed: kprim.cpp:8:9: note: ‘std::ofstream’ {aka ‘std::basic_ofstream<char>’} is not derived from ‘std::basic_istream<_CharT, _Traits>’ 8 | in>>k; | ^ /usr/include/c++/13/bits/random.tcc:2011:5: note: candidate: ‘template<class _RealType, class _CharT, class _Traits> std::basic_istream<_CharT, _Traits>& std::operator>>(basic_istream<_CharT, _Traits>&, lognormal_distribution<_RealType>&)’ 2011 | operator>>(std::basic_istream<_CharT, _Traits>& __is, | ^~~~~~~~ /usr/include/c++/13/bits/random.tcc:2011:5: note: template argument deduction/substitution failed: kprim.cpp:8:9: note: ‘std::ofstream’ {aka ‘std::basic_ofstream<char>’} is not derived from ‘std::basic_istream<_CharT, _Traits>’ 8 | in>>k; | ^ /usr/include/c++/13/bits/random.tcc:2082:5: note: candidate: ‘template<class _RealType, class _CharT, class _Traits> std::basic_istream<_CharT, _Traits>& std::operator>>(basic_istream<_CharT, _Traits>&, chi_squared_distribution<_RealType>&)’ 2082 | operator>>(std::basic_istream<_CharT, _Traits>& __is, | ^~~~~~~~ /usr/include/c++/13/bits/random.tcc:2082:5: note: template argument deduction/substitution failed: kprim.cpp:8:9: note: ‘std::ofstream’ {aka ‘std::basic_ofstream<char>’} is not derived from ‘std::basic_istream<_CharT, _Traits>’ 8 | in>>k; | ^ /usr/include/c++/13/bits/random.tcc:2244:5: note: candidate: ‘template<class _RealType, class _CharT, class _Traits> std::basic_istream<_CharT, _Traits>& std::operator>>(basic_istream<_CharT, _Traits>&, fisher_f_distribution<_RealType>&)’ 2244 | operator>>(std::basic_istream<_CharT, _Traits>& __is, | ^~~~~~~~ /usr/include/c++/13/bits/random.tcc:2244:5: note: template argument deduction/substitution failed: kprim.cpp:8:9: note: ‘std::ofstream’ {aka ‘std::basic_ofstream<char>’} is not derived from ‘std::basic_istream<_CharT, _Traits>’ 8 | in>>k; | ^ /usr/include/c++/13/bits/random.tcc:2317:5: note: candidate: ‘template<class _RealType, class _CharT, class _Traits> std::basic_istream<_CharT, _Traits>& std::operator>>(basic_istream<_CharT, _Traits>&, student_t_distribution<_RealType>&)’ 2317 | operator>>(std::basic_istream<_CharT, _Traits>& __is, | ^~~~~~~~ /usr/include/c++/13/bits/random.tcc:2317:5: note: template argument deduction/substitution failed: kprim.cpp:8:9: note: ‘std::ofstream’ {aka ‘std::basic_ofstream<char>’} is not derived from ‘std::basic_istream<_CharT, _Traits>’ 8 | in>>k; | ^ /usr/include/c++/13/bits/random.tcc:2487:5: note: candidate: ‘template<class _RealType1, class _CharT, class _Traits> std::basic_istream<_CharT, _Traits>& std::operator>>(basic_istream<_CharT, _Traits>&, gamma_distribution<_RealType>&)’ 2487 | operator>>(std::basic_istream<_CharT, _Traits>& __is, | ^~~~~~~~ /usr/include/c++/13/bits/random.tcc:2487:5: note: template argument deduction/substitution failed: kprim.cpp:8:9: note: ‘std::ofstream’ {aka ‘std::basic_ofstream<char>’} is not derived from ‘std::basic_istream<_CharT, _Traits>’ 8 | in>>k; | ^ /usr/include/c++/13/bits/random.tcc:2795:5: note: candidate: ‘template<class _IntType, class _CharT, class _Traits> std::basic_istream<_CharT, _Traits>& std::operator>>(basic_istream<_CharT, _Traits>&, discrete_distribution<_IntType>&)’ 2795 | operator>>(std::basic_istream<_CharT, _Traits>& __is, | ^~~~~~~~ /usr/include/c++/13/bits/random.tcc:2795:5: note: template argument deduction/substitution failed: kprim.cpp:8:9: note: ‘std::ofstream’ {aka ‘std::basic_ofstream<char>’} is not derived from ‘std::basic_istream<_CharT, _Traits>’ 8 | in>>k; | ^ /usr/include/c++/13/bits/random.tcc:3002:5: note: candidate: ‘template<class _RealType, class _CharT, class _Traits> std::basic_istream<_CharT, _Traits>& std::operator>>(basic_istream<_CharT, _Traits>&, piecewise_constant_distribution<_RealType>&)’ 3002 | operator>>(std::basic_istream<_CharT, _Traits>& __is, | ^~~~~~~~ /usr/include/c++/13/bits/random.tcc:3002:5: note: template argument deduction/substitution failed: kprim.cpp:8:9: note: ‘std::ofstream’ {aka ‘std::basic_ofstream<char>’} is not derived from ‘std::basic_istream<_CharT, _Traits>’ 8 | in>>k; | ^ /usr/include/c++/13/bits/random.tcc:3208:5: note: candidate: ‘template<class _RealType, class _CharT, class _Traits> std::basic_istream<_CharT, _Traits>& std::operator>>(basic_istream<_CharT, _Traits>&, piecewise_linear_distribution<_RealType>&)’ 3208 | operator>>(std::basic_istream<_CharT, _Traits>& __is, | ^~~~~~~~ /usr/include/c++/13/bits/random.tcc:3208:5: note: template argument deduction/substitution failed: kprim.cpp:8:9: note: ‘std::ofstream’ {aka ‘std::basic_ofstream<char>’} is not derived from ‘std::basic_istream<_CharT, _Traits>’ 8 | in>>k; | ^ kprim.cpp:16:14: error: ‘d’ was not declared in this scope 16 | for (d=3; d*d<=n && adv; d=d+2) | ^ kprim.cpp:21:8: error: no match for ‘operator<<’ (operand types are ‘std::ifstream’ {aka ‘std::basic_ifstream<char>’} and ‘long long int’) 21 | out<<(long long int)n*n<<endl; | ~~~^~~~~~~~~~~~~~~~~~~~ | | | | | long long int | std::ifstream {aka std::basic_ifstream<char>} kprim.cpp:21:8: note: candidate: ‘operator<<(int, long long int)’ (built-in) 21 | out<<(long long int)n*n<<endl; | ~~~^~~~~~~~~~~~~~~~~~~~ kprim.cpp:21:8: note: no known conversion for argument 1 from ‘std::ifstream’ {aka ‘std::basic_ifstream<char>’} to ‘int’ In file included from /usr/include/c++/13/regex:68, from /usr/include/x86_64-linux-gnu/c++/13/bits/stdc++.h:181: /usr/include/c++/13/bits/regex.h:1715:5: note: candidate: ‘template<class _Ch_type, class _Ch_traits, class _Bi_iter> std::basic_ostream<_CharT, _Traits>& std::__cxx11::operator<<(std::basic_ostream<_CharT, _Traits>&, const sub_match<_Bi_iter>&)’ 1715 | operator<<(basic_ostream<_Ch_type, _Ch_traits>& __os, | ^~~~~~~~ /usr/include/c++/13/bits/regex.h:1715:5: note: template argument deduction/substitution failed: kprim.cpp:21:27: note: ‘std::ifstream’ {aka ‘std::basic_ifstream<char>’} is not derived from ‘std::basic_ostream<_CharT, _Traits>’ 21 | out<<(long long int)n*n<<endl; | ^ In file included from /usr/include/c++/13/string:54: /usr/include/c++/13/bits/basic_string.h:4032:5: note: candidate: ‘template<class _CharT, class _Traits, class _Alloc> std::basic_ostream<_CharT, _Traits>& std::operator<<(basic_ostream<_CharT, _Traits>&, const __cxx11::basic_string<_CharT, _Traits, _Alloc>&)’ 4032 | operator<<(basic_ostream<_CharT, _Traits>& __os, | ^~~~~~~~ /usr/include/c++/13/bits/basic_string.h:4032:5: note: template argument deduction/substitution failed: kprim.cpp:21:27: note: ‘std::ifstream’ {aka ‘std::basic_ifstream<char>’} is not derived from ‘std::basic_ostream<_CharT, _Traits>’ 21 | out<<(long long int)n*n<<endl; | ^ /usr/include/c++/13/bitset:1683:5: note: candidate: ‘template<class _CharT, class _Traits, long unsigned int _Nb> std::basic_ostream<_CharT, _Traits>& std::operator<<(basic_ostream<_CharT, _Traits>&, const bitset<_Nb>&)’ 1683 | operator<<(std::basic_ostream<_CharT, _Traits>& __os, | ^~~~~~~~ /usr/include/c++/13/bitset:1683:5: note: template argument deduction/substitution failed: kprim.cpp:21:27: note: ‘std::ifstream’ {aka ‘std::basic_ifstream<char>’} is not derived from ‘std::basic_ostream<_CharT, _Traits>’ 21 | out<<(long long int)n*n<<endl; | ^ In file included from /usr/include/c++/13/bits/ios_base.h:46, from /usr/include/c++/13/streambuf:43, from /usr/include/c++/13/bits/streambuf_iterator.h:35, from /usr/include/c++/13/iterator:66, from /usr/include/x86_64-linux-gnu/c++/13/bits/stdc++.h:54: /usr/include/c++/13/system_error:339:5: note: candidate: ‘template<class _CharT, class _Traits> std::basic_ostream<_CharT, _Traits>& std::operator<<(basic_ostream<_CharT, _Traits>&, const error_code&)’ 339 | operator<<(basic_ostream<_CharT, _Traits>& __os, const error_code& __e) | ^~~~~~~~ /usr/include/c++/13/system_error:339:5: note: template argument deduction/substitution failed: kprim.cpp:21:27: note: ‘std::ifstream’ {aka ‘std::basic_ifstream<char>’} is not derived from ‘std::basic_ostream<_CharT, _Traits>’ 21 | out<<(long long int)n*n<<endl; | ^ In file included from /usr/include/c++/13/memory:80, from /usr/include/x86_64-linux-gnu/c++/13/bits/stdc++.h:56: /usr/include/c++/13/bits/shared_ptr.h:70:5: note: candidate: ‘template<class _Ch, class _Tr, class _Tp, __gnu_cxx::_Lock_policy _Lp> std::basic_ostream<_CharT, _Traits>& std::operator<<(basic_ostream<_CharT, _Traits>&, const __shared_ptr<_Tp, _Lp>&)’ 70 | operator<<(std::basic_ostream<_Ch, _Tr>& __os, | ^~~~~~~~ /usr/include/c++/13/bits/shared_ptr.h:70:5: note: template argument deduction/substitution failed: kprim.cpp:21:27: note: ‘std::ifstream’ {aka ‘std::basic_ifstream<char>’} is not derived from ‘std::basic_ostream<_CharT, _Traits>’ 21 | out<<(long long int)n*n<<endl; | ^ In file included from /usr/include/c++/13/istream:41: /usr/include/c++/13/ostream:554:5: note: candidate: ‘template<class _CharT, class _Traits> std::basic_ostream<_CharT, _Traits>& std::operator<<(basic_ostream<_CharT, _Traits>&, _CharT)’ 554 | operator<<(basic_ostream<_CharT, _Traits>& __out, _CharT __c) | ^~~~~~~~ /usr/include/c++/13/ostream:554:5: note: template argument deduction/substitution failed: kprim.cpp:21:27: note: ‘std::ifstream’ {aka ‘std::basic_ifstream<char>’} is not derived from ‘std::basic_ostream<_CharT, _Traits>’ 21 | out<<(long long int)n*n<<endl; | ^ /usr/include/c++/13/ostream:564:5: note: candidate: ‘template<class _CharT, class _Traits> std::basic_ostream<_CharT, _Traits>& std::operator<<(basic_ostream<_CharT, _Traits>&, char)’ 564 | operator<<(basic_ostream<_CharT, _Traits>& __out, char __c) | ^~~~~~~~ /usr/include/c++/13/ostream:564:5: note: template argument deduction/substitution failed: kprim.cpp:21:27: note: ‘std::ifstream’ {aka ‘std::basic_ifstream<char>’} is not derived from ‘std::basic_ostream<_CharT, _Traits>’ 21 | out<<(long long int)n*n<<endl; | ^ /usr/include/c++/13/ostream:570:5: note: candidate: ‘template<class _Traits> std::basic_ostream<char, _Traits>& std::operator<<(basic_ostream<char, _Traits>&, char)’ 570 | operator<<(basic_ostream<char, _Traits>& __out, char __c) | ^~~~~~~~ /usr/include/c++/13/ostream:570:5: note: template argument deduction/substitution failed: kprim.cpp:21:27: note: ‘std::ifstream’ {aka ‘std::basic_ifstream<char>’} is not derived from ‘std::basic_ostream<char, _Traits>’ 21 | out<<(long long int)n*n<<endl; | ^ /usr/include/c++/13/ostream:581:5: note: candidate: ‘template<class _Traits> std::basic_ostream<char, _Traits>& std::operator<<(basic_ostream<char, _Traits>&, signed char)’ 581 | operator<<(basic_ostream<char, _Traits>& __out, signed char __c) | ^~~~~~~~ /usr/include/c++/13/ostream:581:5: note: template argument deduction/substitution failed: kprim.cpp:21:27: note: ‘std::ifstream’ {aka ‘std::basic_ifstream<char>’} is not derived from ‘std::basic_ostream<char, _Traits>’ 21 | out<<(long long int)n*n<<endl; | ^ /usr/include/c++/13/ostream:586:5: note: candidate: ‘template<class _Traits> std::basic_ostream<char, _Traits>& std::operator<<(basic_ostream<char, _Traits>&, unsigned char)’ 586 | operator<<(basic_ostream<char, _Traits>& __out, unsigned char __c) | ^~~~~~~~ /usr/include/c++/13/ostream:586:5: note: template argument deduction/substitution failed: kprim.cpp:21:27: note: ‘std::ifstream’ {aka ‘std::basic_ifstream<char>’} is not derived from ‘std::basic_ostream<char, _Traits>’ 21 | out<<(long long int)n*n<<endl; | ^ /usr/include/c++/13/ostream:645:5: note: candidate: ‘template<class _CharT, class _Traits> std::basic_ostream<_CharT, _Traits>& std::operator<<(basic_ostream<_CharT, _Traits>&, const _CharT*)’ 645 | operator<<(basic_ostream<_CharT, _Traits>& __out, const _CharT* __s) | ^~~~~~~~ /usr/include/c++/13/ostream:645:5: note: template argument deduction/substitution failed: kprim.cpp:21:27: note: ‘std::ifstream’ {aka ‘std::basic_ifstream<char>’} is not derived from ‘std::basic_ostream<_CharT, _Traits>’ 21 | out<<(long long int)n*n<<endl; | ^ In file included from /usr/include/c++/13/ostream:880: /usr/include/c++/13/bits/ostream.tcc:307:5: note: candidate: ‘template<class _CharT, class _Traits> std::basic_ostream<_CharT, _Traits>& std::operator<<(basic_ostream<_CharT, _Traits>&, const char*)’ 307 | operator<<(basic_ostream<_CharT, _Traits>& __out, const char* __s) | ^~~~~~~~ /usr/include/c++/13/bits/ostream.tcc:307:5: note: template argument deduction/substitution failed: kprim.cpp:21:27: note: ‘std::ifstream’ {aka ‘std::basic_ifstream<char>’} is not derived from ‘std::basic_ostream<_CharT, _Traits>’ 21 | out<<(long long int)n*n<<endl; | ^ /usr/include/c++/13/ostream:662:5: note: candidate: ‘template<class _Traits> std::basic_ostream<char, _Traits>& std::operator<<(basic_ostream<char, _Traits>&, const char*)’ 662 | operator<<(basic_ostream<char, _Traits>& __out, const char* __s) | ^~~~~~~~ /usr/include/c++/13/ostream:662:5: note: template argument deduction/substitution failed: kprim.cpp:21:27: note: ‘std::ifstream’ {aka ‘std::basic_ifstream<char>’} is not derived from ‘std::basic_ostream<char, _Traits>’ 21 | out<<(long long int)n*n<<endl; | ^ /usr/include/c++/13/ostream:675:5: note: candidate: ‘template<class _Traits> std::basic_ostream<char, _Traits>& std::operator<<(basic_ostream<char, _Traits>&, const signed char*)’ 675 | operator<<(basic_ostream<char, _Traits>& __out, const signed char* __s) | ^~~~~~~~ /usr/include/c++/13/ostream:675:5: note: template argument deduction/substitution failed: kprim.cpp:21:27: note: ‘std::ifstream’ {aka ‘std::basic_ifstream<char>’} is not derived from ‘std::basic_ostream<char, _Traits>’ 21 | out<<(long long int)n*n<<endl; | ^ /usr/include/c++/13/ostream:680:5: note: candidate: ‘template<class _Traits> std::basic_ostream<char, _Traits>& std::operator<<(basic_ostream<char, _Traits>&, const unsigned char*)’ 680 | operator<<(basic_ostream<char, _Traits>& __out, const unsigned char* __s) | ^~~~~~~~ /usr/include/c++/13/ostream:680:5: note: template argument deduction/substitution failed: kprim.cpp:21:27: note: ‘std::ifstream’ {aka ‘std::basic_ifstream<char>’} is not derived from ‘std::basic_ostream<char, _Traits>’ 21 | out<<(long long int)n*n<<endl; | ^ /usr/include/c++/13/ostream:801:5: note: candidate: ‘template<class _Ostream, class _Tp> _Ostream&& std::operator<<(_Ostream&&, const _Tp&)’ 801 | operator<<(_Ostream&& __os, const _Tp& __x) | ^~~~~~~~ /usr/include/c++/13/ostream:801:5: note: template argument deduction/substitution failed: /usr/include/c++/13/ostream: In substitution of ‘template<class _Ostream, class _Tp> _Ostream&& std::operator<<(_Ostream&&, const _Tp&) [with _Ostream = std::basic_ifstream<char>&; _Tp = long long int]’: kprim.cpp:21:27: required from here /usr/include/c++/13/ostream:801:5: error: no type named ‘type’ in ‘struct std::enable_if<false, void>’ /usr/include/c++/13/complex:558:5: note: candidate: ‘template<class _Tp, class _CharT, class _Traits> std::basic_ostream<_CharT, _Traits>& std::operator<<(basic_ostream<_CharT, _Traits>&, const complex<_Tp>&)’ 558 | operator<<(basic_ostream<_CharT, _Traits>& __os, const complex<_Tp>& __x) | ^~~~~~~~ /usr/include/c++/13/complex:558:5: note: template argument deduction/substitution failed: kprim.cpp:21:27: note: ‘std::ifstream’ {aka ‘std::basic_ifstream<char>’} is not derived from ‘std::basic_ostream<_CharT, _Traits>’ 21 | out<<(long long int)n*n<<endl; | ^ /usr/include/c++/13/iomanip:81:5: note: candidate: ‘template<class _CharT, class _Traits> std::basic_ostream<_CharT, _Traits>& std::operator<<(basic_ostream<_CharT, _Traits>&, _Resetiosflags)’ 81 | operator<<(basic_ostream<_CharT, _Traits>& __os, _Resetiosflags __f) | ^~~~~~~~ /usr/include/c++/13/iomanip:81:5: note: template argument deduction/substitution failed: kprim.cpp:21:27: note: ‘std::ifstream’ {aka ‘std::basic_ifstream<char>’} is not derived from ‘std::basic_ostream<_CharT, _Traits>’ 21 | out<<(long long int)n*n<<endl; | ^ /usr/include/c++/13/iomanip:111:5: note: candidate: ‘template<class _CharT, class _Traits> std::basic_ostream<_CharT, _Traits>& std::operator<<(basic_ostream<_CharT, _Traits>&, _Setiosflags)’ 111 | operator<<(basic_ostream<_CharT, _Traits>& __os, _Setiosflags __f) | ^~~~~~~~ /usr/include/c++/13/iomanip:111:5: note: template argument deduction/substitution failed: kprim.cpp:21:27: note: ‘std::ifstream’ {aka ‘std::basic_ifstream<char>’} is not derived from ‘std::basic_ostream<_CharT, _Traits>’ 21 | out<<(long long int)n*n<<endl; | ^ /usr/include/c++/13/iomanip:145:5: note: candidate: ‘template<class _CharT, class _Traits> std::basic_ostream<_CharT, _Traits>& std::operator<<(basic_ostream<_CharT, _Traits>&, _Setbase)’ 145 | operator<<(basic_ostream<_CharT, _Traits>& __os, _Setbase __f) | ^~~~~~~~ /usr/include/c++/13/iomanip:145:5: note: template argument deduction/substitution failed: kprim.cpp:21:27: note: ‘std::ifstream’ {aka ‘std::basic_ifstream<char>’} is not derived from ‘std::basic_ostream<_CharT, _Traits>’ 21 | out<<(long long int)n*n<<endl; | ^ /usr/include/c++/13/iomanip:180:5: note: candidate: ‘template<class _CharT, class _Traits> std::basic_ostream<_CharT, _Traits>& std::operator<<(basic_ostream<_CharT, _Traits>&, _Setfill<_CharT>)’ 180 | operator<<(basic_ostream<_CharT, _Traits>& __os, _Setfill<_CharT> __f) | ^~~~~~~~ /usr/include/c++/13/iomanip:180:5: note: template argument deduction/substitution failed: kprim.cpp:21:27: note: ‘std::ifstream’ {aka ‘std::basic_ifstream<char>’} is not derived from ‘std::basic_ostream<_CharT, _Traits>’ 21 | out<<(long long int)n*n<<endl; | ^ /usr/include/c++/13/iomanip:210:5: note: candidate: ‘template<class _CharT, class _Traits> std::basic_ostream<_CharT, _Traits>& std::operator<<(basic_ostream<_CharT, _Traits>&, _Setprecision)’ 210 | operator<<(basic_ostream<_CharT, _Traits>& __os, _Setprecision __f) | ^~~~~~~~ /usr/include/c++/13/iomanip:210:5: note: template argument deduction/substitution failed: kprim.cpp:21:27: note: ‘std::ifstream’ {aka ‘std::basic_ifstream<char>’} is not derived from ‘std::basic_ostream<_CharT, _Traits>’ 21 | out<<(long long int)n*n<<endl; | ^ /usr/include/c++/13/iomanip:240:5: note: candidate: ‘template<class _CharT, class _Traits> std::basic_ostream<_CharT, _Traits>& std::operator<<(basic_ostream<_CharT, _Traits>&, _Setw)’ 240 | operator<<(basic_ostream<_CharT, _Traits>& __os, _Setw __f) | ^~~~~~~~ /usr/include/c++/13/iomanip:240:5: note: template argument deduction/substitution failed: kprim.cpp:21:27: note: ‘std::ifstream’ {aka ‘std::basic_ifstream<char>’} is not derived from ‘std::basic_ostream<_CharT, _Traits>’ 21 | out<<(long long int)n*n<<endl; | ^ /usr/include/c++/13/iomanip:313:5: note: candidate: ‘template<class _CharT, class _Traits, class _MoneyT> std::basic_ostream<_CharT, _Traits>& std::operator<<(basic_ostream<_CharT, _Traits>&, _Put_money<_MoneyT>)’ 313 | operator<<(basic_ostream<_CharT, _Traits>& __os, _Put_money<_MoneyT> __f) | ^~~~~~~~ /usr/include/c++/13/iomanip:313:5: note: template argument deduction/substitution failed: kprim.cpp:21:27: note: ‘std::ifstream’ {aka ‘std::basic_ifstream<char>’} is not derived from ‘std::basic_ostream<_CharT, _Traits>’ 21 | out<<(long long int)n*n<<endl; | ^ /usr/include/c++/13/iomanip:365:5: note: candidate: ‘template<class _CharT, class _Traits> std::basic_ostream<_CharT, _Traits>& std::operator<<(basic_ostream<_CharT, _Traits>&, _Put_time<_CharT>)’ 365 | operator<<(basic_ostream<_CharT, _Traits>& __os, _Put_time<_CharT> __f) | ^~~~~~~~ /usr/include/c++/13/iomanip:365:5: note: template argument deduction/substitution failed: kprim.cpp:21:27: note: ‘std::ifstream’ {aka ‘std::basic_ifstream<char>’} is not derived from ‘std::basic_ostream<_CharT, _Traits>’ 21 | out<<(long long int)n*n<<endl; | ^ /usr/include/c++/13/bits/valarray_after.h:413:5: note: candidate: ‘template<class _Dom1, class _Dom2> std::_Expr<std::__detail::_BinClos<std::__shift_left, std::_Expr, std::_Expr, _Dom1, _Dom2>, typename std::__fun<std::__shift_left, typename _Dom1::value_type>::result_type> std::operator<<(const _Expr<_Dom1, typename _Dom1::value_type>&, const _Expr<_Dom2, typename _Dom2::value_type>&)’ 413 | _DEFINE_EXPR_BINARY_OPERATOR(<<, struct std::__shift_left) | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~ /usr/include/c++/13/bits/valarray_after.h:413:5: note: template argument deduction/substitution failed: kprim.cpp:21:27: note: ‘std::ifstream’ {aka ‘std::basic_ifstream<char>’} is not derived from ‘const std::_Expr<_Dom1, typename _Dom1::value_type>’ 21 | out<<(long long int)n*n<<endl; | ^ /usr/include/c++/13/bits/valarray_after.h:413:5: note: candidate: ‘template<class _Dom> std::_Expr<std::__detail::_BinClos<std::__shift_left, std::_Expr, std::_Constant, _Dom, typename _Dom::value_type>, typename std::__fun<std::__shift_left, typename _Dom1::value_type>::result_type> std::operator<<(const _Expr<_Dom1, typename _Dom1::value_type>&, const typename _Dom::value_type&)’ 413 | _DEFINE_EXPR_BINARY_OPERATOR(<<, struct std::__shift_left) | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~ /usr/include/c++/13/bits/valarray_after.h:413:5: note: template argument deduction/substitution failed: kprim.cpp:21:27: note: ‘std::ifstream’ {aka ‘std::basic_ifstream<char>’} is not derived from ‘const std::_Expr<_Dom1, typename _Dom1::value_type>’ 21 | out<<(long long int)n*n<<endl; | ^ /usr/include/c++/13/bits/valarray_after.h:413:5: note: candidate: ‘template<class _Dom> std::_Expr<std::__detail::_BinClos<std::__shift_left, std::_Constant, std::_Expr, typename _Dom::value_type, _Dom>, typename std::__fun<std::__shift_left, typename _Dom1::value_type>::result_type> std::operator<<(const typename _Dom::value_type&, const _Expr<_Dom1, typename _Dom1::value_type>&)’ 413 | _DEFINE_EXPR_BINARY_OPERATOR(<<, struct std::__shift_left) | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~ /usr/include/c++/13/bits/valarray_after.h:413:5: note: template argument deduction/substitution failed: kprim.cpp:21:27: note: mismatched types ‘const std::_Expr<_Dom1, typename _Dom1::value_type>’ and ‘long long int’ 21 | out<<(long long int)n*n<<endl; | ^ /usr/include/c++/13/bits/valarray_after.h:413:5: note: candidate: ‘template<class _Dom> std::_Expr<std::__detail::_BinClos<std::__shift_left, std::_Expr, std::_ValArray, _Dom, typename _Dom::value_type>, typename std::__fun<std::__shift_left, typename _Dom1::value_type>::result_type> std::operator<<(const _Expr<_Dom1, typename _Dom1::value_type>&, const valarray<typename _Dom::value_type>&)’ 413 | _DEFINE_EXPR_BINARY_OPERATOR(<<, struct std::__shift_left) | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~ /usr/include/c++/13/bits/valarray_after.h:413:5: note: template argument deduction/substitution failed: kprim.cpp:21:27: note: ‘std::ifstream’ {aka ‘std::basic_ifstream<char>’} is not derived from ‘const std::_Expr<_Dom1, typename _Dom1::value_type>’ 21 | out<<(long long int)n*n<<endl; | ^ /usr/include/c++/13/bits/valarray_after.h:413:5: note: candidate: ‘template<class _Dom> std::_Expr<std::__detail::_BinClos<std::__shift_left, std::_ValArray, std::_Expr, typename _Dom::value_type, _Dom>, typename std::__fun<std::__shift_left, typename _Dom1::value_type>::result_type> std::operator<<(const valarray<typename _Dom::value_type>&, const _Expr<_Dom1, typename _Dom1::value_type>&)’ 413 | _DEFINE_EXPR_BINARY_OPERATOR(<<, struct std::__shift_left) | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~ /usr/include/c++/13/bits/valarray_after.h:413:5: note: template argument deduction/substitution failed: kprim.cpp:21:27: note: mismatched types ‘const std::_Expr<_Dom1, typename _Dom1::value_type>’ and ‘long long int’ 21 | out<<(long long int)n*n<<endl; | ^ /usr/include/c++/13/valarray:1204:1: note: candidate: ‘template<class _Tp> std::_Expr<std::__detail::_BinClos<std::__shift_left, std::_ValArray, std::_ValArray, _Tp, _Tp>, typename std::__fun<std::__shift_left, _Tp>::result_type> std::operator<<(const valarray<_Tp>&, const valarray<_Tp>&)’ 1204 | _DEFINE_BINARY_OPERATOR(<<, __shift_left) | ^~~~~~~~~~~~~~~~~~~~~~~ /usr/include/c++/13/valarray:1204:1: note: template argument deduction/substitution failed: kprim.cpp:21:27: note: ‘std::ifstream’ {aka ‘std::basic_ifstream<char>’} is not derived from ‘const std::valarray<_Tp>’ 21 | out<<(long long int)n*n<<endl; | ^ /usr/include/c++/13/valarray:1204:1: note: candidate: ‘template<class _Tp> std::_Expr<std::__detail::_BinClos<std::__shift_left, std::_ValArray, std::_Constant, _Tp, _Tp>, typename std::__fun<std::__shift_left, _Tp>::result_type> std::operator<<(const valarray<_Tp>&, const typename valarray<_Tp>::value_type&)’ 1204 | _DEFINE_BINARY_OPERATOR(<<, __shift_left) | ^~~~~~~~~~~~~~~~~~~~~~~ /usr/include/c++/13/valarray:1204:1: note: template argument deduction/substitution failed: kprim.cpp:21:27: note: ‘std::ifstream’ {aka ‘std::basic_ifstream<char>’} is not derived from ‘const std::valarray<_Tp>’ 21 | out<<(long long int)n*n<<endl; | ^ /usr/include/c++/13/valarray:1204:1: note: candidate: ‘template<class _Tp> std::_Expr<std::__detail::_BinClos<std::__shift_left, std::_Constant, std::_ValArray, _Tp, _Tp>, typename std::__fun<std::__shift_left, _Tp>::result_type> std::operator<<(const typename valarray<_Tp>::value_type&, const valarray<_Tp>&)’ 1204 | _DEFINE_BINARY_OPERATOR(<<, __shift_left) | ^~~~~~~~~~~~~~~~~~~~~~~ /usr/include/c++/13/valarray:1204:1: note: template argument deduction/substitution failed: kprim.cpp:21:27: note: mismatched types ‘const std::valarray<_Tp>’ and ‘long long int’ 21 | out<<(long long int)n*n<<endl; | ^ /usr/include/c++/13/bits/random.h:1341:5: note: candidate: ‘template<class _RandomNumberEngine, long unsigned int __w, class _UIntType, class _CharT, class _Traits> std::basic_ostream<_CharT, _Traits>& std::operator<<(basic_ostream<_CharT, _Traits>&, const independent_bits_engine<_RandomNumberEngine, __w, _UIntType>&)’ 1341 | operator<<(std::basic_ostream<_CharT, _Traits>& __os, | ^~~~~~~~ /usr/include/c++/13/bits/random.h:1341:5: note: template argument deduction/substitution failed: kprim.cpp:21:27: note: ‘std::ifstream’ {aka ‘std::basic_ifstream<char>’} is not derived from ‘std::basic_ostream<_CharT, _Traits>’ 21 | out<<(long long int)n*n<<endl; | ^ /usr/include/c++/13/bits/random.tcc:910:5: note: candidate: ‘template<class _IntType, class _CharT, class _Traits> std::basic_ostream<_CharT, _Traits>& std::operator<<(basic_ostream<_CharT, _Traits>&, const uniform_int_distribution<_IntType>&)’ 910 | operator<<(std::basic_ostream<_CharT, _Traits>& __os, | ^~~~~~~~ /usr/include/c++/13/bits/random.tcc:910:5: note: template argument deduction/substitution failed: kprim.cpp:21:27: note: ‘std::ifstream’ {aka ‘std::basic_ifstream<char>’} is not derived from ‘std::basic_ostream<_CharT, _Traits>’ 21 | out<<(long long int)n*n<<endl; | ^ /usr/include/c++/13/bits/random.tcc:968:5: note: candidate: ‘template<class _RealType, class _CharT, class _Traits> std::basic_ostream<_CharT, _Traits>& std::operator<<(basic_ostream<_CharT, _Traits>&, const uniform_real_distribution<_IntType>&)’ 968 | operator<<(std::basic_ostream<_CharT, _Traits>& __os, | ^~~~~~~~ /usr/include/c++/13/bits/random.tcc:968:5: note: template argument deduction/substitution failed: kprim.cpp:21:27: note: ‘std::ifstream’ {aka ‘std::basic_ifstream<char>’} is not derived from ‘std::basic_ostream<_CharT, _Traits>’ 21 | out<<(long long int)n*n<<endl; | ^ /usr/include/c++/13/bits/random.tcc:2145:5: note: candidate: ‘template<class _RealType, class _CharT, class _Traits> std::basic_ostream<_CharT, _Traits>& std::operator<<(basic_ostream<_CharT, _Traits>&, const cauchy_distribution<_RealType>&)’ 2145 | operator<<(std::basic_ostream<_CharT, _Traits>& __os, | ^~~~~~~~ /usr/include/c++/13/bits/random.tcc:2145:5: note: template argument deduction/substitution failed: kprim.cpp:21:27: note: ‘std::ifstream’ {aka ‘std::basic_ifstream<char>’} is not derived from ‘std::basic_ostream<_CharT, _Traits>’ 21 | out<<(long long int)n*n<<endl; | ^ /usr/include/c++/13/bits/random.tcc:1029:5: note: candidate: ‘template<class _CharT, class _Traits> std::basic_ostream<_CharT, _Traits>& std::operator<<(basic_ostream<_CharT, _Traits>&, const bernoulli_distribution&)’ 1029 | operator<<(std::basic_ostream<_CharT, _Traits>& __os, | ^~~~~~~~ /usr/include/c++/13/bits/random.tcc:1029:5: note: template argument deduction/substitution failed: kprim.cpp:21:27: note: ‘std::ifstream’ {aka ‘std::basic_ifstream<char>’} is not derived from ‘std::basic_ostream<_CharT, _Traits>’ 21 | out<<(long long int)n*n<<endl; | ^ /usr/include/c++/13/bits/random.tcc:1110:5: note: candidate: ‘template<class _IntType, class _CharT, class _Traits> std::basic_ostream<_CharT, _Traits>& std::operator<<(basic_ostream<_CharT, _Traits>&, const geometric_distribution<_IntType>&)’ 1110 | operator<<(std::basic_ostream<_CharT, _Traits>& __os, | ^~~~~~~~ /usr/include/c++/13/bits/random.tcc:1110:5: note: template argument deduction/substitution failed: kprim.cpp:21:27: note: ‘std::ifstream’ {aka ‘std::basic_ifstream<char>’} is not derived from ‘std::basic_ostream<_CharT, _Traits>’ 21 | out<<(long long int)n*n<<endl; | ^ /usr/include/c++/13/bits/random.tcc:1762:5: note: candidate: ‘template<class _RealType, class _CharT, class _Traits> std::basic_ostream<_CharT, _Traits>& std::operator<<(basic_ostream<_CharT, _Traits>&, const exponential_distribution<_RealType>&)’ 1762 | operator<<(std::basic_ostream<_CharT, _Traits>& __os, | ^~~~~~~~ /usr/include/c++/13/bits/random.tcc:1762:5: note: template argument deduction/substitution failed: kprim.cpp:21:27: note: ‘std::ifstream’ {aka ‘std::basic_ifstream<char>’} is not derived from ‘std::basic_ostream<_CharT, _Traits>’ 21 | out<<(long long int)n*n<<endl; | ^ /usr/include/c++/13/bits/random.tcc:2539:5: note: candidate: ‘template<class _RealType, class _CharT, class _Traits> std::basic_ostream<_CharT, _Traits>& std::operator<<(basic_ostream<_CharT, _Traits>&, const weibull_distribution<_RealType>&)’ 2539 | operator<<(std::basic_ostream<_CharT, _Traits>& __os, | ^~~~~~~~ /usr/include/c++/13/bits/random.tcc:2539:5: note: template argument deduction/substitution failed: kprim.cpp:21:27: note: ‘std::ifstream’ {aka ‘std::basic_ifstream<char>’} is not derived from ‘std::basic_ostream<_CharT, _Traits>�
www.pbinfo.ro permite evaluarea a două tipuri de probleme:
Problema kprim face parte din prima categorie. Soluția propusă de tine va fi evaluată astfel:
Suma punctajelor acordate pe testele utilizate pentru verificare este 100. Astfel, soluția ta poate obține cel mult 100 de puncte, caz în care se poate considera corectă.