单项选择题

下面程序的输出结果是( )。
#include<iostream>
using namespace std;
int main()

int n=10;
while(n>7)
n--;
cout<<11<<',';

cout<<endl;

A.10,9,8,
B.9,8,7,
C.10,9,8,7,
D.9,8,7,6,