摘要: code #include<iostream> #include<cstdio> using namespace std; int main() { ios::sync_with_stdio(false); int a,m,ans; cin>>a>>m; a%=m; ans=a*a%m; cout< 阅读全文
posted @ 2022-02-09 09:58 ethon-wang 阅读(31) 评论(0) 推荐(0) 编辑
摘要: code #include<iostream> #include<cstdio> using namespace std; int main() { ios::sync_with_stdio(false); int n; cin >> n; if (n & 1) { printf("odd"); / 阅读全文
posted @ 2022-02-09 09:49 ethon-wang 阅读(22) 评论(0) 推荐(0) 编辑