#include <stdio.h> int main() { int i = 1; while(i > 0){ i+=i; printf("%d ",i); } return 0; }
[此贴子已经被作者于2022-11-5 22:13编辑过]