輸出hello word
#include using namespace std;
int main()
查詢int的空間大小
#include using namespace std;
int main()
定義列舉型別,輸出比賽結果
#include using namespace std;
enum gameresult ;
int main()
} return 0;
}
使用do-while語句,求自然數1-10之和
#include using namespace std;
int main()
while (i <= 10);
cout << "sum=" << sum << endl;
return 0;
}
//計算圓形,正方形,矩形的面積,執行時先提示使用者選擇圖形型別,
//然後對圖形要求使用者輸入半徑值,對長方形要求使用者輸入長和寬的值,
//對正方形要求使用者輸入邊長的值,計算面積的值然後顯示出來。
#include using namespace std;
const float pi = 3.1416;
int main()
;int main()
; cout << "please input year:" << endl;
cin >> mytime.year;
cout << "please input month:" << endl;
cin >> mytime.month;
cout << "please input day:" << endl;
cin >> mytime.day;
cout << "please input hour:" << endl;
cin >> mytime.hour;
cout << "please input min:" << endl;
cin >> mytime.min;
cout << "please input sec:" << endl;
cin >> mytime.sec;
cout << "the time is set to:" << mytime.year << "/";
cout << mytime.month << "/";
cout << mytime.day << " ";
cout << mytime.hour << ":";
cout << mytime.min << ":";
cout << mytime.sec << endl;
return 0;
}
//利用函式計算x的n次方
#include "iostream"
using namespace std;
double power(double x, int n)
int main()
//函式的巢狀
//輸入兩個數,求兩個數的平方和
#include "iostream"
using namespace std;
int fun2(int m)
int fun1(int x, int y)
int main()
//利用的函式的引用
//輸入兩個整數交換後輸出
#include "iostream"
using namespace std;
void swap(int &a, int &b)
int main()
int main()
//使用debug的 step into功能追蹤到函式內部
//編寫函式float convert(float f)引數和返回值為float型別
//實現演算法:c=(f-32)*5/9
#include "iostream"
using namespace std;
float convert(float f)
int main()
C語言基礎 一些C語言小程式(一)
1,請把從1到1000的數列印出來,不能使用任何的迴圈語句或是條件語句 include void func int i void func int i int main 2,向乙個有序的單鏈表中插入乙個新的節點 include include typedef struct node node int...
一些C C 的演算法小程式
1,列印ascii字元 include include using namespace std class table void ascii protected int i void table ascii printf the number of 0 in the end of 100 is d....
小程式的一些坑吧
1 小程式背景 background image wxss是無法使用本地資源 即 檔案中的資源 解決 1 使用網路 2 使用base64 把轉為base64格式 網上有工具 3 不寫在wxss中,直接寫在wxml中 view style background image url assets ima...