标签:panel std mes turn 费马小定理 ret 重复 nbsp style
1 #include<bits/stdc++.h> 2 using namespace std; 3 int t,p; 4 int main(){ 5 while(cin>>t){ 6 while(t--){ 7 cin>>p; 8 for(int i=0;i<p;++i) 9 for(int j=0;j<p;++j) 10 printf("%d%c",(i+j)%p,j==p-1?‘\n‘:‘ ‘); 11 for(int i=0;i<p;++i) 12 for(int j=0;j<p;++j) 13 printf("%d%c",i*j%p,j==p-1?‘\n‘:‘ ‘); 14 } 15 } 16 return 0; 17 }
标签:panel std mes turn 费马小定理 ret 重复 nbsp style
原文地址:https://www.cnblogs.com/acgoto/p/9617318.html