题解列表

筛选

人见人爱A+B (C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    int n,i,h,m,s,a[6];    scanf("%d",&n);    while(n--) ……

Minesweeper (C语言代码)

摘要:解题思路:遍历所有格子.把有雷的格子周围的空格计数+1.代码:#include <stdio.h>#include <stdlib.h>void MinesInCorner(char **,int,i……

人见人爱A+B (C语言代码)

摘要:解题思路:这题看起来为acm的题,但感觉好像确实没有什么难度,比较适合新手练习。参考代码:#include<stdio.h> int main() {     int N,AH,AM,AS,B……

回文数字 (C++代码)

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int is_right(int m,int n){ int a[6]={0}; int t=……