• 2022-06-09
    运行程序,程序输出结果是( )#include using namespace std;int main(){ struct stud{ char num [5]; int s[4]; double ave;} a;cout
    A: 31
    B: 32
    C: 29
    D: 30
  • B

    内容

    • 0

      设有如下定义:#include &#91;iostream&#93;using namespace std;void main( ){ int arr&#91;&#93;={6,7,8,9,10}; int *ptr; ptr=arr; *(ptr+2)+=2; cout<<*ptr<<','<<*(ptr+2);}则程序段的输出结果为__________。 A: 8,10 B: 6,8 C: 7,9 D: 6,10

    • 1

      运行如下程序,结果为_____。#include <;iostream>;using namespace std;int main( ){int x =10; do { cout <;<; --x ; }while( !x ); return 0;}

    • 2

      阅读下列程序,写出运行结果。 #include &#91;iostream&#93; using namespace std; int main() { int a = 1, b = 2; bool x, y; cout &#91;< (a++)+(++b) << endl; cout << a % b << endl; x = !a&#93;b; y = a-- && b; cout << x << endl; cout << y << endl; }

    • 3

      以下程序的输出结果是 。#include<;iostream>;#include<;iomanip>;using namespace std;void main(){ int i; for (i=1;i>;=0;) cout<;<;i--;}

    • 4

      1、写出下列程序的输出结果 #include &#91;iostream&#93; using namespace std; int b=2; int func(int *a) { b+=*a; return(b); } int main( ) { int a=2,res=2; res+=func(&a); cout<<res<<endl; return 0; }