1樓:敬問鮃
不用全域性變數
#include
int main()
void tongji(char s)
printf("其中大寫字母有%d個,小寫字母有%d個\n空格有%d個,數字有%d個,其他字元有%d個\n",d,x,k,z,q);
}用全域性變數
#include
int d=0,x=0,k=0,z=0,q=0;
void main()
void tongji(char s[20])}
2樓:匿名使用者
#include
#include
void countchar(char* pszinput)c = *pszinput;
while ('\0' != c)
else if (isspace(c))
else if (c >= '0' && c <= '9')else
c = *(++pszinput);
}printf ("字母個數:%d\n", ialpha);
printf ("數字個數:%d\n", inumber);
printf ("空格個數:%d\n", ispace);
printf ("其他字元個數:%d\n", iother);
}int main()
3樓:木芽鍾
#include
main()
4樓:雷曉
都很好,很強大,我自愧不如的了
5樓:
#include
int main()
void fun_char(char a)printf("字母有%d\n空格有%d個\n數字有%d個\n其他字元有%d個\n",x,z,p,q);}
c語言 編寫一個函式,由實參傳來一個字串,統計字串中字母,數字,空格和其他字元的個數,在主函式
6樓:育知同創教育
參考以下**
#include
int main()
void sum(char *ch)
printf("character:%d\tnumber:%d\tothers:%d\n",character,number,others);}
C語言編寫函式用冒泡法對陣列中整數由大到小排序,並在主函式中呼叫
測試資料 0 1 4 5 6 6 7 8 9 28 冒泡函式和列印函式 include stdio.h include conio.h void bubblesort int a,int n int i,j,temp for i 0 i 9 i for j 9 j i 1 j if a j 樓主好運...
用c語言編寫作業系統,用C語言編寫作業系統
要有彙編的一定 bai基礎,在看 他會教du你你不會的你要學zhi的匯dao編部分,但是他說的版不細,你需要自己根據 unix某個版本是用c語言 編寫的,在c語言使用之前,用的是彙編。windows傳聞80 是用c語言回編寫的,也有部答分是c和彙編混編的。據說windows2000以後大多是用c 編...
C語言程式編寫,如何編寫C語言程式
陣列的地方換成指標的形式就可以了,在定義的地方加個 p,然後把p a就可以了,例a i 可以寫成p i的形式。include main min a 0 site2 0 for i 1 i 10 i if a i temp1 a 9 a 9 max j site1 a j temp1 temp1 a ...