码迷,mamicode.com
首页 > 其他好文 > 详细

华为机试—数字逆序且求个位数乘积

时间:2015-01-05 00:33:40      阅读:255      评论:0      收藏:0      [点我收藏+]

标签:华为机试   数字逆序   求各位数乘积   

技术分享


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

//逆序
string revs(string s){
	int j = s.length()-1;
    int i=0;
	char t;
	while(i<j){
		t = s[i];
		s[i++]=s[j];
		s[j--]=t;
	}
	return s;
}

//个位乘积
int chen(string s){
	int ans =1;
	for(int i=0;i<s.length();i++){
		ans = ans*(s[i]-'0');
	}
	return ans;
}

int main()
{
	string s;
	cin>>s;
	string ss = revs(s);
	int n=chen(s);
	cout<<ss<<" "<<n<<endl;

	return 0;
}

技术分享



华为机试—数字逆序且求个位数乘积

标签:华为机试   数字逆序   求各位数乘积   

原文地址:http://blog.csdn.net/wtyvhreal/article/details/42409149

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!