用函式實現九九乘法表
#define _crt_secure_no_warnings 1
#includevoid showmutil(int n)//區域性變數開闢的空間在棧上。
printf("\n"); }}
int main()
最大公約數
/1、如果b等於0,計算結束,a就是最大公約數;
2、否則,計算a除以b的餘數,讓a等於b,而b等於那個餘數;
3、回到第一步。/
#define _crt_secure_no_warnlngs 1
#include #include //最大公約數
int main()
printf("gac=%d\n", a);
return 0;
}
求1–100整數中9出現的次數
#define _crt_secure_no_warnlngs 1
#include #include int main()
printf("\n");
for (i = 0; i < 100; i++)
if (a[i] / 10 == 9)//求十位數上的9的個數。
}printf("k=%d\n", k);
return 0;
}
列印菱形
#define _crt_secure_no_warnings 1
#includeint main()
tmp = i;
int sum = 0;
while (tmp != 0)
if (sum == i)
}return 0;
}
楊輝三角
#include#define n 11//定義從此處開始,n的值為11,不可改變。
int main()
for (i = 3; ifor (i = 1; iprintf("%4d", a[i][j]);
} printf("\n");
} getchar();
return 0;
}
元小白(猿小白)高階日記 三(for)
3 for for 表示式1 表示式2 表示式3 迴圈語句 表示式1 初始化部分,用於初始化變數 表示式2 條件判斷部分,用於判斷迴圈的終止 表示式3 調整部分,用於迴圈條件的調整例如 用for輸出0到10 define crt secure no warnings 1 include includ...
元小白(猿小白)高階日記 五(函式)
自定義函式 ret type fun name paral,ret type 返回值型別 fun name 函式名 paral 函式引數舉例 1 求兩個數中較大的數 define crt secure no warnings 1 include int max int x,int y else re...
元小白(猿小白)高階日記 七(陣列)
陣列是一類相同元素的集合。一 一維陣列 1 陣列的建立 type t arr name const n type t 是指數組的元素型別 const n 是乙個常量表示式,用來指定陣列的大小,即元素個數 例如 int arr1 10 char arr2 30 float arr3 33 2 陣列的初...