求1-100的累加和分别用while,do...while和for这两种循环语句实现
问题描述:
求1-100的累加和分别用while,do...while和for这两种循环语句实现
答
while实现:
int i=1;
int s=0;
while(0