package TEST;publicclassMain{publicstaticvoidmain(String[] args){int sum=0;for(int i =0; i <=2020; i++){int temp=i;while(temp>0){if(temp%10==2){sum++;}temp/=10;}}System.out.println(sum);}}
一个项目中用到的使用Volley上传头像文件的例子,供大家参考,具体内容如下/*** Created by wangshihui on 2015/11/30.* 上传文件* url:.....method:post参数:file接口给的参数:file 就是表单的keyÿ…