0_0_19511358_25001.cpp: In function 'int main()':
0_0_19511358_25001.cpp:4:5: error: 'cin' was not declared in this scope
cin>>t;
^
0_0_19511358_25001.cpp:12:19: error: 'INF' was not declared in this scope
dp[i]=INF;
^
0_0_19511358_25001.cpp:23:19: error: 'INF' was not declared in this scope
if(dp[m]!=INF) cout<<"The minimum amount of money in the piggy-bank is "<<dp[m]<<'.'<<endl;
^
0_0_19511358_25001.cpp:23:24: error: 'cout' was not declared in this scope
if(dp[m]!=INF) cout<<"The minimum amount of money in the piggy-bank is "<<dp[m]<<'.'<<endl;
^
0_0_19511358_25001.cpp:23:95: error: 'endl' was not declared in this scope
if(dp[m]!=INF) cout<<"The minimum amount of money in the piggy-bank is "<<dp[m]<<'.'<<endl;
^
0_0_19511358_25001.cpp:24:14: error: 'cout' was not declared in this scope
else cout<<"This is Impossible."<<endl;
^
0_0_19511358_25001.cpp:24:43: error: 'endl' was not declared in this scope
else cout<<"This is Impossible."<<endl;
^
|