阅读程序写结果。
#include<iostream>
using namespace std;
int main() {
for(int i=7; i>=1; i--) {
if(i%2==0) {
continue;
}
cout <<i;
if(i==1) {
cout <<",";
输出:_______
7,5,3,1
1,3,5,7
2,4,6,8
8,6,4,2