张永良 • 27天前
#include<iostream> using namespace std; int main(){ int n; cin>>n; n=n*1000+n; n=n/7; n=n/11; n=n/13; cout<<n; return 0; }
评论: