自学内容网 自学内容网

每日OJ题_牛客_小乐乐改数字_模拟_C++_Java

目录

牛客_小乐乐改数字_模拟

题目解析

C++代码

Java代码


牛客_小乐乐改数字_模拟

小乐乐改数字_牛客题霸_牛客网 (nowcoder.com)

描述:

        小乐乐喜欢数字,尤其喜欢0和1。他现在得到了一个数,想把每位的数变成0或1。如果某一位是奇数,就把它变成1,如果是偶数,那么就把它变成0。请你回答他最后得到的数是多少。


题目解析

        思路:将输入读取为字符串,判断如果是偶数则为0,奇数为1,最后输出,但是要判断第一个1出现的位置。

C++代码

#include <algorithm>
#include <cstdlib>
#include <iostream>
using namespace std;

int main()
{
int n = 0;
cin >> n;
string tmp;
while (n)
{
int val = n % 10;
if (val % 2 == 0)
tmp += "0";
else
tmp += "1";
n /= 10;
}
reverse(tmp.begin(), tmp.end());
int res = atoi(tmp.c_str());
cout << res;
return 0;
}

Java代码

import java.util.Scanner; 
// 注意类名必须为 Main, 不要有任何 package xxx 信息
public class Main
{
    public static void main(String[] args) 
    {
        Scanner in = new Scanner(System.in);
        char[] s = in.next().toCharArray();
        for(int i = 0; i < s.length; i++)
        {
            if(s[i] % 2 == 0) s[i] = '0';
            else s[i] = '1';
        }
        // 处理⼀下前导零
        int i = 0;
        while(i < s.length - 1 && s[i] == '0')
        {
            i++;
        }
        while(i < s.length)
        {
            System.out.print(s[i++]);
        }
    }
}

原文地址:https://blog.csdn.net/GRrtx/article/details/142861398

免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!