1.編寫**模擬三次密碼輸入的場景
#define _crt_secure_no_warnings 1
#include
#include
int main()
}if (i == 3)
else
return
0;}
2.編寫乙個程式,可以一直接收鍵盤字元,如果是小寫字元就輸出對應的大寫字元,如果接收的是大寫字元,就輸出對應的小寫字元,如果是數字不輸出。
#define _crt_secure_no_warnings 1
#include
#include
int main()
else
if (n >= 'a'&& n <= 'z')
else
if (n >= 0 && n <= 9)
else;}
system("pause");
return
0;}
3.計算1/1-1/2+1/3-1/4+1/5 …… + 1/99 - 1/100 的值。
#define _crt_secure_no_warnings 1
#include
#include
int main()
for (j = 2; i <= 100; i += 2)
printf("ret= %lf\n", ret1-ret2);
return
0;}
4.輸出乙個整數的每一位。
#define _crt_secure_no_warnings 1
#include
int main()
return
0;}
5.編寫程式數一下 1到 100 的所有整數中出現多少次數字 9
#define _crt_secure_no_warnings 1
#include
int main()
if (i / 10 == 9)
}printf("共有 %d 個9 \n", count);
return
0;}
C語言名企面試題
5位運動員參加了10公尺臺跳水比賽,有人讓他們 比賽結果 a選手說 b第一,我第三。b選手說 我第二,e第四。c選手說 我第一,d第二。d選手說 c最後,我第三。e選手說 我第四,a第一。比賽結束後,每位選手都說對了一半,請程式設計確定比賽的名次。define crt secure no warni...
名企面試題
小公尺 1.設計乙個演算法,把乙個排序二叉樹,轉化成乙個排序的雙向鍊錶,要求不能建立任何新的節點,只調整指標指向。include include include using std cout using std cin using std endl struct bsnode 定義各種用到資料型別 ...
IT名企面試 騰訊筆試題
const的含義及實現機制,比如 const int i,是怎麼做到i只可讀的?const用來說明所定義的變數是唯讀的。這些在編譯期間完成,編譯器可能使用常數直接替換掉對此變數的引用。初探編譯器static const之實現原理 到商店裡買200的商品返還100優惠券 可以在本商店代替現金 請問實際...