欢迎来到皮皮网网首页

【python 2.7.5源码安装】【拳皇辅助源码】【eclipse 源码 缓存】54的源码怎么算_54的原码怎么算

来源:活跃股指标公式源码 时间:2024-12-27 00:46:57

1.什么c++程序能让输入的源的原数字只显示一位数 比如输入54 只显示5 求大神给源码

54的源码怎么算_54的原码怎么算

什么c++程序能让输入的数字只显示一位数 比如输入54 只显示5 求大神给源码

       因为不知道你其他方面的具体需求,就先写成如下代码:

码算码算python 2.7.5源码安装

       #include <iostream>

码算码算python 2.7.5源码安装

       #include<string>

码算码算python 2.7.5源码安装

       using namespace std;

码算码算python 2.7.5源码安装

       int main(void)

码算码算python 2.7.5源码安装

       {

码算码算python 2.7.5源码安装

        string s;

码算码算python 2.7.5源码安装

        cin>>s;

码算码算python 2.7.5源码安装

        if(!s.empty())

码算码算python 2.7.5源码安装

        cout<<s[0]<<endl;

码算码算python 2.7.5源码安装

        return 0;

码算码算python 2.7.5源码安装

       }

码算码算python 2.7.5源码安装