练习第30天

选择

 多线程可以提高CPU利用率 不能提高内存的利用率

A

B

 

A

C

A

B

 

A

 

B

 

C

编程


最难的问题
最难的问题__牛客网

#include <iostream>
#include <string>
#include <unordered_map>
using namespace std;

//给个字符串翻译出来
//
int main() 
{
    unordered_map<char,char>hash;
    for(char ch='F';ch<='Z';ch++)
    {
        hash[ch]=ch-5;
    }
    for(char ch='A';ch<'F';ch++)
    {
        hash[ch]=ch+26-5;
    }
    string str;
    while(getline(cin,str))
    {
        string res="";
        for(int i=0;i<str.size();i++)
        {
            if(str[i]!=' ')
            res+=hash[str[i]];
            else 
            res+=' ';
        }
        cout<<res<<endl;
    }
    return 0;
}

 因子个数

因子个数__牛客网

#include <iostream>
using namespace std;

//遇见质数就除干净
int main()
{
    int n;
    while(cin>>n)
    {
        int res=0;
        int tmp=n;
        for(int i=2;i*i<=n;i++)
        {
            if(tmp%i==0) 
            {
                res++;
                while(tmp%i==0)
                {
                    tmp/=i;
                }
            }  
        }
        if(tmp!=1) res++;
        cout<<res<<endl;
    }

    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值