1.什么c++程序能让输入的源的原数字只显示一位数 比如输入54 只显示5 求大神给源码
什么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源码安装