题目内容
以下程序是计算学生的年龄。已知第一位最小的学生年龄为10岁,其余学生的年龄一个比一个大2岁,求第5个学生的年龄。#include int age( int n ) { int c; if( n==1 ) c=10;else c= ① ; return(c); }int main() { int n=5; printf("age:%d\n", ② );return 0; }
查看答案
搜索结果不匹配?点我反馈
更多问题