提交时间:2019-11-08 18:18:16
运行 ID: 2105
#include<iostream> #include<cstdio> using namespace std; int main() { int x; x=1992*1992; while(x>100) { x%=10; x/10; } cout<<x<<endl; system("pause"); return 0; }