注意:此页面搜索的是所有试题
题目内容
(华北水利水电大学C 语言程序设计)
读下列程序,写出程序的运行结果。 #include int main() { int n=10; while (n>7) { n--; printf("%d\n",n); } return 0; } 输出:
参考答案