#include<stdio.h>void main( ){ int i;for(i=1;1<=10; i++){ if(i%2==0)continue;printf("%2d",i ); }}

2025-02-25 10:44:35
推荐回答(1个)
回答1:

请问你的问题是什么