请教大神一道题
我想把这个程序用do....while写出来,应该怎么做?求大神指教。
public class Test{
public static void main(String [] args){
int a=0,b=1;
do{
a=a+b;
if(b%3!=0){
a=a+b;
b++;
}
} while(b<=100);
System.out.println(a);
}
}