题解列表

筛选

P1019 (C++代码)

摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cmath> #include<algorithm> using namespace std; const……

Tom数 (C++代码)

摘要:#include <iostream> #include  <cmath> using namespace std; long long  n; int main() {     whil……

程序员的表白 (C语言代码)

摘要:解题思路:根据u字格式 利用for循环扫描打印 将u 分为两部分 竖线部分 和横线部分 分别打印 竖线部分有n行 每行有n+2 列 用两个循环嵌套即可注意事项:参考代码:#include<stdio.……

数字整除 (C++代码)(大数除法)

摘要:解题思路:        这里不需要算出来结果,除到最后一位的时候判断是不是 17 的倍数就行了参考代码:#include<bits/stdc++.h> using namespace std; ……