解题思路:
注意事项:
参考代码:
#include <iostream>
#include <deque>
#include <algorithm>
#include <numeric>
#include <iterator>
#include <string>
#include <cmath>
#include <cstdlib>
#include <string.h>
using namespace std;
int main()
{
string str;
while(cin>>str)
{
for(int i=0;i<str.size();i++)
{
if(str[i]=='0')
{
str[i]='1';
}
else
{
str[i]='0';
}
}
cout<<str<<endl;
}
return 0;
}
0.0分
0 人评分
点我有惊喜!你懂得!浏览:1437 |
C语言训练-舍罕王的失算 (C++代码)(都给答案了还算什么)浏览:994 |
程序员的表白 (C语言代码)浏览:1575 |
Hello, world! (C语言代码)浏览:1315 |
【绝对值排序】 (C语言代码)浏览:832 |
【回文数(二)】 (C语言代码)浏览:800 |
数组输出 (C语言代码)--此题的题目描述有问题浏览:1844 |
C语言程序设计教程(第三版)课后习题8.3 (C语言代码)浏览:790 |
C语言程序设计教程(第三版)课后习题8.7 (C语言代码)浏览:609 |
矩阵加法 (C语言代码)浏览:1768 |