摘要: #include #include using namespace std; int main() { while (1) { int count=0; int sum=0; while (1) { char c; int temp = 0; c = getchar(... 阅读全文
posted @ 2018-09-07 23:32 图袋鼠 阅读(83) 评论(0) 推荐(0) 编辑
摘要: #include #include using namespace std; int main() { //第一个循环用于输入,遇到#停止 while (1) { //第二个循环用于单次输入的每个字符的判断 while (1) { char c; c = getchar(); ... 阅读全文
posted @ 2018-09-07 23:06 图袋鼠 阅读(99) 评论(0) 推荐(0) 编辑
摘要: #include #include #include #include using namespace std; int main(){ //次数 int n = 0; while (cin >> n) { //这里需要读一个字符,需要消除换行符的影响 getchar(); while (n--) { ... 阅读全文
posted @ 2018-09-07 10:33 图袋鼠 阅读(271) 评论(0) 推荐(0) 编辑