单项选择题
A、第3行B、第4行C、第5行D、第6行该程序是在哪一行结束的:()……
1)#include
2)using namespace std;
3)int main()
4){
5)int a,b,result;
6)cout<<"please input two numbers:\n";
7)cin>>a>>b;
8)result=3*a-2*b+1;
9)cout<<"resultis" << result << endl;
10)}
该程序是在哪一行结束的:()
A、第3行
B、第4行
C、第5行
D、第6行