0 like 0 dislike
8.6k views
請撰寫一個程式,使用者會輸入一行字元,換行字元代表輸入結束,請計算所有的輸入當中有多少個英文字母,多少個數字,以及多少個其他的字元,並依照範例的格數輸出。

Sampile input:

1234567890ancdefghijklmnopqrstuvwxyz~!@#$%^&*()_+

Sample output:

digit:10
alphabet:26
other:13
[Exercise] Coding (C) - asked in 作業 by (18k points)
ID: 17667 - Available when: Unlimited - Due to: Unlimited

recategorized by | 8.6k views
0 0
Called for Help

65 Answers

0 like 0 dislike
Hidden content!
:#include <stdio.h>

#include <stdlib.h>

#include <ctype.h>

int main()

{
** **** * * **** ** * c;
**** **** * * *** * * * * &c);

    int num = 0, alp = 0, oth = 0;
* * * ** ****** * ** * != '\n')

    {
* ** * * * * * *** * ** *** * * * * ******* * ** * * *****
***** * ** ****** * ** * ******** * * ** *****
* * * ** * ** * ** *** * ** * ** * * ***** *** *** *** += 1;
* * * * * ** ** * ** * * * * ** *
** ** *** ** **** * * ** * **** *** *** *** ** ** if(isalpha(c))
** ** * * * * * **** * **** ** **** ** *
** * *** *** * ** * *** * * ** * **** * ** *** * * * ** * ** *** * * += 1;
* **** * *** * * * ** ** * * ** ** ** ** *
**** ** *** * ***** * * *** ** ** ** * ** ** if(isprint(c))
* ** * *** * * *** ****** * *** **** * * *
** * * *** * * **** *** * *** ** * *** ** * * * ***** ** ** * += 1;
** * ***** *** ** *** **** ****** * * * ** ***
* * ** *** **** * * *** * **** *** * * &c);

    }
** *** *** * * *** * **** * * ** *** * * * * *** ***
**** ** * * ** ** ** * ***** ***** ** ** * *
** *** * * ** * ** ** ******* * * * * *** oth);
* *** * ** ** *** ** *** **** ****
** * **** * * * * * 0;

}
answered by (-202 points)
0 like 0 dislike
Hidden content!
#include<stdio.h>

#include<ctype.h>



int main(void)

{
* * *** * ***** * * * c;

    
* ** ** * *** ** * * * d=0,
**** ****** ***** **** ** * * ** * **** * **
**** * *** * *** * ** * * * *** *** *** *

    
* ** **** ****** * ** *** *** ********

    
*** * **** * ** * *** * (c != '\n') {
**** ** *** ** * ** * * *** ** * ****** * ***** ** ** (isdigit(c))
** * * * *** * * * * * * ***** ** *** ***** * * *** * ****
* * * * * **** ** * **** ** * *** *** * *** * * if(isalpha(c))
** *** *** * ** ** * * ** * ** * * ** ** * * * *****
*** *** *** **** ***** * * * *** * ** * ** ****** ** *
* ** ***** * **** ** * * * **** ** * * ****
** * * **** ** * ** * * * * * ** *** *** ** * * * * *** *
* * * * *** * ** **** ***** * * * * * * ** * * * *** * ** ****** * * * ****
* *** * *** * **

    
* * * **** * *** * * * * * * * ** * *
* ** * * * * *** ** * * * * * ** *** *** * *
*** * ** *** *** ** * * **** *** * * * * *

    
* ** ** ** ***** * * * ("pause");
* ** *** ** **** ** **** ** 0;

}
answered by (-170 points)
0 like 0 dislike
Hidden content!
#include<stdio.h>

#include<stdlib.h>

#include<ctype.h>

int main()

{

    int i = 0,j = 0,k = 0;

    char c;
* *** * * * * **
* ** *** *** * * * ****** *** * *** ** * &c);
* * * * ** ** *** ****
**** ** * * * ** * * ** ******** != '\n')
*** ***** *** ** ** * ** * ** *
** ** * * * ** * * * * *** *** *****
***** ***** * ** ** * *** *** ** ****
* * * ** * * * ** * **** * * * ****
** ** * * ** * * *** *** ** * * *** ** *
* * ****** *** ** * * * * ** **
* ** * * *** * *** ***** ** ***** **** ** * * * *
* ** ** * * *** * ***** * ** * ****
***** *** ***** ** ** ** * ** ******* **** *** %d",j);
** * * *** ******* **** * **** %d",i);
** *** ** ** * ** * ** * * * * * ** ** ** ** %d",k - i - j);
** ** ** ***** * *** * * * ***
***** ** * *** ** ****** * ** ** ********** **
** ******** ** ** **** * * * * * * 0;
* * *** ***** ***** **** **** *
answered by (-264 points)
0 like 0 dislike
Hidden content!
#include<stdio.h>

#include<stdlib.h>

int main()

{

    char c;

    int x=0,y=0,z=0;
** * ** ****** * * * * * * * ** * ***** * *
* * * * * * * * * != '\n')

    {
** *** *** * ** *** ** * ** * * ***
* * *** ** * * * ** ****** ** * * ** * ***** * *** **
* **** *** * ** ** **** ***** ** ***** * ** **
* *** **** * *** * *** **** * **** ** * **
* * * ** * ** * ** **** *** *** * *
* ** ** ** * *** *** * *** *** ** * ** * ** ** *** ** **** ** *** *
** ** * ** * *** **** * * ** ** ** ** **
* *** * * * ** * * *** *** * ** ***** ****** ** * *** ** **
** *** * * * ** * ** ** * ** * *** ** ***
**** * **** *** **** **** **** * * * *** ** * ******* ** *
*** ** ** ** ** ** **** ** **** * * * ** * * ********** *

    }
** ** * ** * **** **** * * ** * * * * * * * *
* * ****** ** *** * ** * ** * ** * * ****** *
** ** ** ** ** *** ** ***** * * * * *
* *** ** ** * * ** *** * ****** * * *** ****

    return 0;

}
answered by (156 points)
0 like 0 dislike
Hidden content!
#include <stdio.h>

#include <stdlib.h>



int main()

{
** ** * ** ******** * ** c ;
* * ** * ** ****** * ** * * * alphabet = 0 , digit = 0 , other = 0 ;

    
* * ** * * **** ** * * * * * * * ** *
** ** **** ***** * * c != '\n' )
** ***** * * ** * *
* * * * * * * **** ** * * ** * * ** * ****** ** * c > 64 && c < 91 )
** * *** * * * * ** * *** * * * * **** ** *** * * **** ****
** *** ***** ** ** ** * ** * * ** *** ** * if( c > 96 && c < 123 )
* * * * *** * * * * ** *** *** ***** * **** ** ** **** * * *
** ** * * * * * * *** ** * * if( c > 47 && c < 58 )
* **** * * * * * ** * *** ** * *** *** ****** ** ** * **** ** *** *
* **** * *** ** *** * ** ** ** * *** * **
******* * * ** **** * * ***** * ** **** * * * ***** *** * * *
** * ** * ** * * *** **** *** ** * * ** * * **** * **** **
* * ** * * ** * ****** ** *
**** ** * ** *****
***** ** ******* * * * * * * * * *** * ** ** * * * * *** *
*** **** *** ** ** * *****
* * * * ** * * ********* **** ** * * *
* * * ** * *** * * 0;

}
answered by (-162 points)
0 like 0 dislike
Hidden content!
#include <stdio.h>

#include <stdlib.h>

#include <ctype.h>



int main(void)

{
**** * ** * ** * * ** ***** c;
* * *** ****** * ** ** * ** digit = 0, alphabet = 0, other = 0;


**** ** * ** * * * * *** *** ** * **** &c);
*** ***** * ** * ** * (c != '\n')
***** * * * ** ******
****** ***** * * * ** *** * * * ** ** *** (isdigit(c))
** * * * * * * * * **** * * * ** *** ** ***** *** ** **** ** ***
* ***** ** * * * ** ** ** * * ** * ** if (isalpha(c))
* ** ** **** * * ** * ** * * **** * ** * ** * ** *
* ** ** *** ** **** **** ** * ** * ****** ** *****
* * * *** * ** ** * ** * * * * ** ******* ** ***** ** ** * *


** *** * *********** * ** * ** * ** **** * * * ***** &c);
* **** *** ** **** *
****** * * * * *** * ** * *** ** ** * *** * digit);
* ** ***** ***** * * ** * * * ** ** ** * alphabet);
***** * ** *** **** *** * * * * ** ** * other);


* * * *** * ***** * 0;

}
answered by (-214 points)
0 like 0 dislike
Hidden content!
# include <stdio.h >

# include <stdlib.h >

# include <ctype.h >

  



  int main ( void )

   {

     char c;

     int a=0,o=0,n=0,h=0;
* * *** **** * * ****** * ** ********
************* ** * *** ** ** ** *
**** * * ****** **** *** *** ** * *** * * **
**** ** * ** * *** * * *** *** ***** **** * * * ***
* ** * * * ** * * *** * * * * ** *** * * **
** * ** **** *** **** **** * **** * ** *** * * * *** ** ***
** * * * * * * ** ** ** ** * ** *** * ** ** **** *
** ** * *** ** ***** * ***** ** * ** ***** * * * * * ** ** ** * ******** ** *** *
* ** * ** ** * ********** * ** * * *** *** * * * * * * **** *** ** * *
** ** * * * *** * * * * *** * ** *** **** ** * * ** * **** * ** *** **** * * **** ** *
* * ***** ** * ** *** **** * *** *
*** **** * *** * * *** ** * * * * * ***
*** * * ***** ****** ** ** * ** * ** *** *** *** ***

** ** * **** ** **** * ** *** ****** ***** ** * ****

** * ** * * *** * * ** ** ** * * * ** * *** * ** **

** * * * * ** ** * *** ** * * * * ******* *

      }
answered by (-146 points)
0 like 0 dislike
Hidden content!
#include <stdio.h>

#include <stdlib.h>



int main()

{
* * * * * * *** * ** *** **** c ;
* **** * *** * ** alphabet = 0 , digit = 0 , other = 0 ;

    
*** * *** * * ** * *** *** ** ***** * * **
* ** ** * *** * * ** * c != '\n' )
*** ** ** *** *** * *
* **** ** * ** * *** ***** * * ** ** * * ** * c > 64 && c < 91 )
**** ** ***** * ** * * *** *** * * * **** * *** ** ** **** * * **** *
***** ** ** ** * * *** * ** *** *** * ***** if( c > 96 && c < 123 )
* * * * * ** ** **** * * * * * * ** * *********** * ***** * **
**** ***** * * *** * * ** * ** ** * * **** * * if( c > 47 && c < 58 )
* * * * ** **** * * ** * * * * * * ** * * ** ** * **** ** * *** * * *
** * *** * * *** * * ** ** * * * ******* * **
* ***** ** * * * ** * * * * * * *** *** *** *** * * * ** **
* ** * ****** * *** * * * ***** * **** * * * * ***** ** * ** **** ** **
** ** * ** ** ** ** *
* **** ** * * ** **
* * * ** ** ***** * * ** *** *** ** ** * * ****** ****** * *** * ******* ** *
* ** **** * * * *** * ***
*** * * ** *** * *** *** * ** *** **
* * * * * *** ** * 0;

}
answered by (-162 points)
0 like 0 dislike
Hidden content!
:#include <stdio.h>

#include <stdlib.h>

#include <ctype.h>

int main()

{
****** * * ** ** ** * ** * * c;
**** ** * * * * ***** * **** ** * * &c);

    int num = 0, alp = 0, oth = 0;
**** * * ** * * *** ** != '\n')

    {
** **** ***** ** *** ***** * * ****** * * * * ***
* **** * ** *** * * * ** *** **** *
** *** ** * * * ******* * **** **** *** ***** * * * * * ** += 1;
*** * ** **** *** **** ** * * ** *** *
* * * ** ** * * *** ** * * ** * ** ** * if(isalpha(c))
* ** * * ** * ** ** ** ***** **** * * ** * *
* * ****** * * ** * * * ** * ** * ****** * * ** *** ** * * += 1;
*** * ** *** ** ** * * * *** ** * **** * * **** *
** * * *** * **** ******* * ** ****** if(isprint(c))
** * * * ****** ** * ** * **** *** ***** * * ****
** * ** * * ***** * ** * * * * * * * ** *** * *** ** * ** * * ** * += 1;
****** * * * ** * ********** *** *
* **** **** * * * ** * * * * ** **** ** ***** ** * * * &c);

    }
*** ** ** ** ** ** ** ***** * ** ***
** *** * * * * * ** * * ** * * * * *
** * *** *** *** ***** ** ** ** * **** *** ** * oth);
* * ***** *** ***** ** * ****** *
* * *** ** **** * * ** * 0;

}
answered by (-202 points)
0 like 0 dislike
Hidden content!
#include <stdio.h>

#include <stdlib.h>



int main(void)

{
* ** * * * ******** c;
** * **** * *** * digit = 0, alphabet = 0, other = 0;


** **** **** * **** ***** *** * **** &c);
* * * ** **** *** ** (c != '\n')
** *** * * ** * * **
* * ** *** *** ** * ** *** ***** * * ** *** * * ** ** * (isdigit(c))
* * * **** * * ** ** *** ** ** ****** * * *** *** **** * ** * ** *
** ** *** ** * *** * ** * * * ** * * *** **** if (isalpha(c))
******* ** * ** ** * *** *** ** ** * * * * ****** ** ** * * **** ***
* * * * * ** * * * *** ********* * ** ** ** * ***
** ** * ****** *** * *** * * ****** * ***** * * ** * * * ** * *


* ** *** **** * * * *** ** *** * ** ** **** ** *** **** ** &c);

    }
** * * *** *** ***** *** ** ** * * * digit);
** ** ** *** * * * * * *** * ****** * * ** alphabet);
** * * * *** ** **** * *** ** ** other);


* * ** * ** * ** 0;

}
answered by (-214 points)
Welcome to Peer-Interaction Programming Learning System (PIPLS) LTLab, National DongHwa University
English 中文 Tiếng Việt
IP:172.71.120.163
©2016-2026

Related questions

0 like 0 dislike
23 answers
[Exercise] Essay (Open question) - asked Dec 22, 2016 in 作業 by Shun-Po (18k points)
ID: 19793 - Available when: Unlimited - Due to: Unlimited
| 3.9k views
0 like 0 dislike
20 answers
[Exercise] Essay (Open question) - asked Nov 10, 2016 in 作業 by Shun-Po (18k points)
ID: 17220 - Available when: Unlimited - Due to: Unlimited
| 3.1k views
0 like 0 dislike
7 answers
[Exercise] Essay (Open question) - asked Dec 22, 2016 in 作業 by Shun-Po (18k points)
ID: 19794 - Available when: Unlimited - Due to: Unlimited
| 1.7k views
0 like 0 dislike
26 answers
[Exercise] Coding (C) - asked Nov 3, 2016 in 作業 by Shun-Po (18k points)
ID: 16957 - Available when: Unlimited - Due to: Unlimited
| 4.2k views
0 like 0 dislike
37 answers
[Exercise] Coding (C) - asked Oct 20, 2016 in 作業 by Shun-Po (18k points)
ID: 14579 - Available when: Unlimited - Due to: Unlimited
| 5.1k views
12,783 questions
183,442 answers
172,219 comments
4,824 users