返回列表 發帖

2025/02/08 課堂重點(紘鳴)

本帖最後由 李知易 於 2025-2-8 17:05 編輯

今日上課重點(週六15:30 - 17:00)

f637. DF-expression
f640. 函數運算式求值(V)

今日考試:
401 -  710 隨機 2 題
(603)AC
(709)

下次考試:
401 - 710 隨機 2 題

c071
以下與數學表達式 “0<x<5 且 x≠2” 不等價的 C 語言邏輯表達式是
A)        (0<x<5) && (x!=2)
B)        0<x && x<5 && x!=2
C)        x>0 && x<5 && x!=2
D)        (x>0 && x<2) || (x>2 && x<5)

c072
有以下程式
  1. #include <stdio.h>
  2. main( ) {
  3.     int a, b;
  4.     for (a=0; a<3; a++){
  5.         scanf("%d", &b);
  6.         switch(b){
  7.             default:
  8.                 printf("%d,",b+1);
  9.                 continue;
  10.             case 1:
  11.                 printf("%d,", b+1);
  12.             case 2:
  13.                 printf("%d,", b+1);
  14.                 continue;
  15.       }
  16.    }
  17. }
複製代碼
執行時輸入:1 2 3,則輸出結果是
A)         2,2,3,4,4,4,
B)        2,3,4,
C)         2,2,3,4,
D)        2,3,3,4,5,6,


c073
有以下程式
  1. #include <stdio.h>
  2. main( )
  3. {
  4.     int a=-2, b=2;
  5.     for(; ++a && --b;)
  6.     printf("%d,%d\n", a,b);
  7. }
複製代碼
程式運行後的輸出結果是
A)        1,-1
B)        0,0
C)         0,1
D)        0,2


c074
有以下程式
  1. #include <stdio.h>
  2. main( )
  3. {
  4.     int a=0, b=0;
  5.     for( ;a<7; a++ ) {
  6.         if (a%2==0)
  7.             continue;
  8.         b += a;
  9.         continue;
  10.     }
  11.     printf( “%d \n”, b );
  12. }
複製代碼
程式運行後的輸出結果是
A)         0
B)        4
C)        1
D)         9

c075
以下選項中是非轉義字元的是
A)        ’\d’
B)        ’\t’
C)        ’\b’
D)        ’\r’
  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. int n, idx = -1;
  4. string s;
  5. int compute(int n)
  6. {
  7.     idx++;
  8.     int ans = 0;
  9.     if()
  10.         return _;
  11.     if()
  12.         return _;
  13.     if(s[idx] == '2')
  14.         ans += compute(___) + compute(___)...;
  15.     return ans;
  16. }
  17. int main()
  18. {
  19.     cin >> s >> n;
  20.     cout << compute(n) << endl;
  21.     return 0;
  22. }
複製代碼

  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. string s;
  4. char c;
  5. int eval()
  6. {
  7.     cin>>s;
  8.     if(s[0]<'A')
  9.         return stoi(s);
  10.     else
  11.         c=s[0];
  12.     if(c=='h')
  13.     {
  14.         return eval()*3-eval()*2+eval();
  15.     }
  16.     if(c=='g')
  17.     {
  18.         return eval()*2+eval()-7;
  19.     }
  20.     if(c=='f')
  21.     {
  22.         return eval()*2-3;
  23.     }
  24. }
  25. int main()
  26. {
  27.     cout<<eval();
  28.     return 0;
  29. }
複製代碼

TOP

  1. ACCDA
複製代碼

TOP

本帖最後由 李知易 於 2025-2-8 17:03 編輯

本帖隱藏的內容需要回復才可以瀏覽

TOP

返回列表