C语言for循环实例 C语言循环实例 C语言if语句实例 C语言for循环实例 /* for_13s.c */ #include <stdio.h> int main(void) { int n; // count by 13s from 2 for (n = 2; n < 60; n = n + 13) printf("%d \n", n); return 0; } C语言循环实例 C语言if语句实例