题解列表

筛选

<循环>角谷猜想(C语言)

摘要:#include<stdio.h> int main() { int n,x,y; scanf("%d", &n); while (n > 0)//未知循环次数用while语句 {……