本文主要是介绍杭电OJ 1060 :Leftmost Digit,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
C++代码:
#include<iostream>
#include<math.h>
using namespace std;
int main(){long long T;double n;cin>>T;while(T--){cin>>n;double a=n*log10(n);double b=a-(long long)a;int c=(int)pow(10.0,b);cout<<c<<endl;}return 0;
}
这篇关于杭电OJ 1060 :Leftmost Digit的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!