摘要: 条件控制语句if...else... if(条件) { 条件为true时执行的代码 } else { 条件不为true时执行的代码 } 多分支switch语句 switch(n) { case 1:执行代码块1 break; case 2:执行代码块2 break; default:n与case1和 阅读全文
posted @ 2020-08-08 11:53 肥泽~ 阅读(101) 评论(0) 推荐(0)
摘要: 题目链接:http://codeforces.com/contest/1399/problem/D 题目描述: You are given a binary string s consisting of n zeros and ones. Your task is to divide the giv 阅读全文
posted @ 2020-08-08 09:52 肥泽~ 阅读(246) 评论(0) 推荐(1)