SysYTestcases/function_2020/11_while.sy
ridethepig 13f3cb710a init
2023-05-16 00:56:56 +08:00

12 lines
91 B
Plaintext

int a;
int b;
int main(){
b=0;
a=3;
while(a>0){
b = b+a;
a = a-1;
}
return b;
}