摘要: 1036 跟奥巴马一起编程 (15 分) 美国总统奥巴马不仅呼吁所有人都学习编程,甚至以身作则编写代码,成为美国历史上首位编写计算机代码的总统。2014 年底,为庆祝“计算机科学教育周”正式启动,奥巴马编写了很简单的计算机代码:在屏幕上画一个正方形。现在你也跟他一起画吧! 输入格式: 输入在一行中给 阅读全文
posted @ 2021-07-30 22:02 shiff 阅读(29) 评论(0) 推荐(0) 编辑
摘要: 1036 Boys vs Girls (25 分) This time you are asked to tell the difference between the lowest grade of all the male students and the highest grade of al 阅读全文
posted @ 2021-07-30 18:49 shiff 阅读(80) 评论(0) 推荐(0) 编辑
摘要: 栈和队列的应用 栈的括号匹配问题 依次扫描所有字符,遇到坐括号入栈,遇到右括号则弹出栈顶元素检查是否匹配 匹配失败的情况:1.左括号单身2.右括号单身3.左右括号不匹配 代码 #define MaxSize 10 typedef struct{ char data[MaxSize]; int top 阅读全文
posted @ 2021-07-30 17:37 shiff 阅读(78) 评论(0) 推荐(0) 编辑