暴力解法,最大限度减低难度 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,sum=1; scanf("%d",&n); for(int i=1;i<=…… 题解列表 2023年03月07日 0 点赞 0 评论 106 浏览 评分:0.0
3018: 末两位数 摘要:解题思路:每次都用末两位数进行相乘后取余注意事项:参考代码:#include <stdio.h>#include <stdlib.h>#include <string.h>#include <math…… 题解列表 2022年11月14日 0 点赞 0 评论 230 浏览 评分:9.9
数组——题解 3018: 末两位数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[2]={1,0}; int i,j,n; scanf("%d",&n); …… 题解列表 2022年12月31日 0 点赞 0 评论 233 浏览 评分:9.9