• 2022-05-31
    智慧职教:

    下面程序的输出结果是

    main() { 

    int s,k; 

    for(s=1,k=2;k<5;k++) s+=k; 

    printf(“%d ”,s);

    }