例項1:輸出
#include "stdafx.h"
#include using namespace std;
int main()
結果:
hello!
welcome to c++!
例項2:讀取並顯示整數#include "stdafx.h"
#include using namespace std;
int main()
結果:
please enter the radius!
10the radius is:10
pi is:3.14
please enter a different radius!
2now the radius is changed to:2
補充例項:常量定義#include "stdafx.h"
#include using namespace std;
int main()
結果:
please enter the radius!
5the radius is:5
pi is:3.14159
please enter a different radius!
7now the radius is changed to:7
pi is still:3.14159
例項3:檢視資料型別所佔位元組數及注釋的使用#include "stdafx.h"
#include using namespace std;
int main()
結果:
the size of an int is: 4bytes.
the size of an short int is: 2bytes.
the size of an long int is: 4bytes.
the size of an char is: 1bytes.
the size of an float is: 4bytes.
the size of an double is: 8bytes.
例項4:減法操作#include "stdafx.h"
#include using namespace std;
int main()
結果:
difference is:50
now difference is:-50
注意:如果將x宣告為unsigned int x,則會輸出錯誤的結果。但程式不報錯例項5:求兩數之差的絕對值
#include "stdafx.h"
#include using namespace std;
int main()
結果:
input value of b:
10input value of a:
5the difference of a and b is: 5
例項6:進製轉換與浮點數小數點位數保留#include "stdafx.h"
#include #include using namespace std;
int main()
結果:
enter the year:
2012
2012是閏年
例項8:輸入兩個整數,比較兩個數的大小#include "stdafx.h"
#include using namespace std;
int main()
return 0;
}
結果:
輸入乙個0-6的整數
5friday
例項10:求自然數1~10之和#include "stdafx.h"
#include using namespace std;
int main()
cout << "sum = " << sum << endl;
return 0;
}
結果:
sum = 55
Python基礎學習筆記例項
最近在學習python,看了黑馬老師課程裡的名片管理,自己寫了一遍,感覺還比較有用。用字典存名片內容,包括名片的新增 修改 顯示全部。主函式 import crad def 無限迴圈,0退出 while true 顯示功能選單 card def.show menue action str input...
C語言基礎100 題1 10
題目1 有1 2 3 4個數字,能組成多少個互不相同且無重複數字的三位數?都是多少?1.程式分析 可填在百位 十位 個位的數字都是1 2 3 4。組成所.include main for i 0 i 3 i mid a 0 a 0 a 1 a 1 a 2 a 2 a 3 a 3 mid if a 0...
C語言程式設計例項
c語言三個數從小到大排序 輸出 c語言猴子吃桃問題 c語言百錢買百雞 百錢百雞,百雞問題 c語言漁夫打魚曬網問題 c語言希爾排序演算法 c語言氣泡排序演算法 c語言直接插入排序演算法 c語言快速排序演算法 c語言選擇排序演算法 c語言歸併排序演算法 c語言二分查詢演算法,折半查詢演算法 c語言分塊查...