Toggle navigation
Courses
Questions
Tags
Users
AC 20161123 exercise 1
0
like
0
dislike
6.2k
views
請撰寫一個程式,使用者會輸入一行字元,換行字元代表輸入結束,請計算所有的輸入當中有多少個英文字母,多少個數字,以及多少個其他的字元,並依照範例的格數輸出。
Sampile input:
1234567890ancdefghijklmnopqrstuvwxyz~!@#$%^&*()_+
Sample output:
digit:10
alphabet:26
other:13
[Exercise]
Coding (C)
-
asked
Nov 23, 2016
in
作業
by
Shun-Po
(
18k
points)
ID: 17578 -
Available when:
Unlimited
-
Due to:
Unlimited
|
6.2k
views
comment
1
3
Called for Help
Please
log in
or
register
to add a comment.
82
Answers
0
like
0
dislike
Hidden content!# include <stdio.h >
# include <ctype.h >
int main()
{
int a=0,s=0,d=0;
* ** *** * ** * * c;
** ** * * * * ** * ** * * * * * ** * * * ** **** * *
* * ** ** *** * * * *** * ** *
{
** ** * ****** *** **** * *** * * *** ** * * * (isdigit(c))
*** * * * * * * * **** * * * * ** * ** ** * * * * ** * * ** * *** ** *
* * * * * * ** ** **** * * ** * * * **** * * **** * * * if (isalpha(c))
***** * ** * * * * * ** ** *** ** ** * * * * * ** ** ** * * * * * **** * * *
* * ** ** * * ** * * *** ** * * *** *** ** *
** **** *** * * * * * * ** * * * ** * * * * * * *** * * * * *** **
* * * * *** * * **** * ** * * ** * * * * * * * * * * * *
}
* ** * * * * * * ** ** ** ** * * ** * * * * * *** *
***** * * * * * ***** * ** * * * * * *** * * *
* * ** * * * * * * * ** * * * * * * * *
* * * * * * * * ** * * * * * 0;
}
answered
Nov 23, 2016
by
410523012
(
-158
points)
ask related question
comment
Please
log in
or
register
to add a comment.
0
like
0
dislike
Hidden content!