3.14关于for循环的见怪不怪 #include<stdio.h> /* 3.14 author:edcfreedom date:2021/8/7 funDescription: for/while */ int main() { int data; data = 0; while(data<10){ puts("cool"); data++; } return 0; }