/*需求:计数器
分析:count++
*/
public class HelloWorld {
public static void main(String[] args){
int count = 0;
if(true){
count++;
}
}
}
分析:count++
*/
public class HelloWorld {
public static void main(String[] args){
int count = 0;
if(true){
count++;
}
}
}
简单计数器实现

579

被折叠的 条评论
为什么被折叠?



