1086 就不告诉你 (15 分)
Posted tonyyy
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了1086 就不告诉你 (15 分)相关的知识,希望对你有一定的参考价值。
#include <bits/stdc++.h> #define ll long long using namespace std; string stream1(ll i) { stringstream stream; stream<<i; return stream.str(); }//int数字转字符串 int main() { int a,b; scanf("%d %d",&a,&b); ll c = a*b; string s =stream1(c); reverse(s.begin(),s.end()); cout<<stoi(s)<<endl; return 0; }
以上是关于1086 就不告诉你 (15 分)的主要内容,如果未能解决你的问题,请参考以下文章