求(超大)数字的第一位

243 词

题目描述

输入一个整数 n( 1≤n≤263−1),你的任务是算出 nn最高位

输入

多组输入,第一个是整数N代表有N个数,

后面有N个整数m

对每一个m输出最高一位

输出

对每一个m输出最高一位

#include<bits/stdc++.h>
using namespace std;
int main(){
char n[20];
int x,i;
cin>>i;
while(i–){
scanf(“%s”,n);
cout<<n[0]<<endl;
}
return 0;
}