摘要: #include<iostream>using namespace std;int main() { int i, j, n, a[100],temp; cin >> n; for (i = 0;i < n;i++) cin >> a[i]; for (i = 0;i < n;i++) { for 阅读全文
posted @ 2017-07-16 23:19 Isaacgy 阅读(272) 评论(0) 推荐(0)
摘要: #include<iostream>using namespace std;int main() { int x=1; for (int i = 1;i <= 1992;i++) { x = 1992 * x % 100; } cout << x<<endl; return 0;} 阅读全文
posted @ 2017-07-16 17:22 Isaacgy 阅读(241) 评论(0) 推荐(0)