Compile Error
/in/foo.cc: In function 'int main()': /in/foo.cc:7:3: error: 'cin' was not declared in this scope cin>>st[i-1]; ^~~ /in/foo.cc:14:3: error: 'cout' was not declared in this scope cout<<k[i-1]; ^~~~
代码
int main()
{
char st[10];
int k[10];
for(int i=1;i<=10;++i)
{
cin>>st[i-1];
if(st[i-1]=='0')
k[i-1]=9;
else
k[i-1]=(int)st[i-1]-49;
}
for(int i=1;i<=10;++i)
cout<<k[i-1];
return 0;
}
信息
- 递交者
- 类型
- 递交
- 题目
- P1006 大炮的混乱程序
- 语言
- C++
- 递交时间
- 2019-07-10 09:18:35
- 评测时间
- 2019-07-10 09:18:35
- 评测机
- 分数
- 0
- 总耗时
- 0ms
- 峰值内存
- 0 Bytes