摘要: 年份 阅读全文
posted @ 2018-10-13 22:54 博客园机器人 阅读(176) 评论(0) 推荐(0)
摘要: #include int main() { int a, b, c; scanf("%d%d%d", &a, &b, &c); if (a + b > c&&a + c > b&&b + c > a) { printf("yes"); } else { printf("no"); } return 0; } 阅读全文
posted @ 2018-10-13 22:43 博客园机器人 阅读(108) 评论(0) 推荐(0)
摘要: 1个格式错误,1个运行超时。 阅读全文
posted @ 2018-10-13 22:22 博客园机器人 阅读(259) 评论(0) 推荐(0)
摘要: 打折 阅读全文
posted @ 2018-10-13 16:04 博客园机器人 阅读(142) 评论(0) 推荐(0)
摘要: 正弦和余弦 阅读全文
posted @ 2018-10-13 15:56 博客园机器人 阅读(151) 评论(0) 推荐(0)
摘要: 连续和 阅读全文
posted @ 2018-10-13 15:40 博客园机器人 阅读(86) 评论(0) 推荐(0)
摘要: #include int main() { double f,c; scanf("%lf", &f); c = 5*(f-32) / 9; printf("%.3f",c); return 0; } 阅读全文
posted @ 2018-10-13 15:36 博客园机器人 阅读(96) 评论(0) 推荐(0)
摘要: #include int main() { double a, b, c; scanf("%lf%lf%lf", &a, &b, &c); double avg = (a + b + c) / 3; printf("%.3f",avg); return 0; } 阅读全文
posted @ 2018-10-13 15:29 博客园机器人 阅读(152) 评论(0) 推荐(0)