The output of the following programming is ( )#include<stdio.h>main(){ int i,j,k=0,m=0; for(i=0;i<2;i++) { for(j=0;j<3;j++) k++; k-=j; } m=i+j; printf("k=%d,m=%d\n",k,m);}
A、k=0,m=3;
B、k=0,m=5;
C、k=1,m=3;
D、k=1,m=5
发布时间:2025-10-17 12:40:50