摘要: AC代码 阅读全文
posted @ 2019-08-02 21:06 哨音 阅读(111) 评论(0) 推荐(0) 编辑
摘要: 思路: 读取数组 计算边长 输出 AC代码 include include int const max_n = 85; using namespace std; int main() { ifdef ONLINE_JUDGE else freopen("1.txt", "r", stdin); en 阅读全文
posted @ 2019-08-02 18:08 哨音 阅读(119) 评论(0) 推荐(0) 编辑
摘要: 思路: 读取数组 计算边长 输出 AC代码 include include int const max_n = 85; using namespace std; int main() { ifdef ONLINE_JUDGE else freopen("1.txt", "r", stdin); en 阅读全文
posted @ 2019-08-02 17:34 哨音 阅读(62) 评论(0) 推荐(0) 编辑
摘要: 思路: 1. 使用数组保存每一行沙漏的最大符号数 2. 输入一个正整数和一个符号 3. 遍历数组,找到大于正整数的数组下标 j。 4. 三角形底边的字符数为 (j 1) 2 1 5. 打印沙漏 6. 打印剩余字符:x n[j 1] AC代码 include const int max_n = 200 阅读全文
posted @ 2019-08-02 15:58 哨音 阅读(148) 评论(0) 推荐(0) 编辑