C程式設計,任意輸入英文字母,輸出該字母的前驅和後繼,並以此字母開始,將英文順序輸出

2021-03-21 13:44:14 字數 3121 閱讀 9288

1樓:匿名使用者

只考慮小寫

字母:#include

using namespace std;

int main()

return(0);}

2樓:聽不清啊

完整的程式如下 :

main()

printf("\n");}

3樓:匿名使用者

哥們你先試了再追問,前面2個人的程式不是都對的

4樓:

|//#include "stdafx.h"//vc++6.0加上這一行.

#include "stdio.h"//

void main(void)

if((ch1=ch-1)<'a' || ch1<'a' && ch1>'z')

ch1+=26;

if((ch2=ch+1)>'z' && ch2<'a' || ch2>'z')

ch2-=26;

printf("the previous and the next is %c,%c.\n",ch1,ch2);

for(i=0;i<26;i++)

printf("\b.\n");}

c語言程式設計,輸入任意一串英文字母,然後按字母相反順序輸出這一串字母。

5樓:挫挫佬

#include

#include

int main(void)

6樓:匿名使用者

#include

#include

void main(void)

printf("排序後的字串為%s\n", ch);}

c語言:輸入一個大寫字母,求其對應的小寫字母及其它的前驅與後繼

7樓:小螞蟻

#include

int main()

如果沒有太多要求,這樣應該是可以的。

程式設計輸入一個小寫字母字元,求出該字母的前驅小寫字母和後續大寫字母. 5

8樓:匿名使用者

#include

void main()

else if(ch=='a')

else if(ch=='z')}

組合語言 輸入不超過二十個字母 再輸入其中一個字母 輸出這個字母的前驅字母和後繼字母

9樓:做而論道

data   segment

str  db  20, ?

strbuff  db  20 dup(?)cr_lf  db  13, 10, 36data   ends

code   segment

assume   cs:code, ds:datastart:

mov   ax, data

mov   ds, ax

;-----------------------------lea   dx, str

mov   ah, 10

int   21h

mov   cl, str + 1

cmp   cl, 0

je    exit

mov   ch, 0

lea   dx, cr_lf

mov   ah, 9

int   21h

mov   ah, 1

int   21h

cmp   al, 13

je    exit

mov   bx, 0

lp:mov   ah, strbuff[bx]cmp   ah, 13

je    exit

cmp   al, ah

je    disp

inc   bx

jmp   lp

disp:

lea   dx, cr_lf

mov   ah, 9

int   21h

mov   ah, 2

cmp   bx, 0

je    next

mov   dl, strbuff[bx - 1]int   21h

next:

mov   dl, strbuff[bx]int   21h

mov   dl, strbuff[bx + 1]int   21h

exit:

mov   ah, 4ch

int   21h

code   ends

end   start

c語言程式設計1. 輸入一個字母,輸出它的後繼字母。如輸入』a』,則輸出』b』。 源**:

10樓:匿名使用者

#include

int main()

11樓:留下痕跡的人生

char ch;

scanf("%c",&ch);

printf("%c\n",ch+1);

提問:設計一個程式,隨意輸入多個英文字母,然後輸出按字母表順序排列好的字母. 誰會呀?~~ 求講解~~

12樓:華言仔

用一個陣列來存所輸入的英文字母,然後對陣列內所有元數進行從大到小排列,最後輸出陣列就可以了。

用c語言編寫,對於任意輸入的一段英文,統計並輸出26個英文字母的出現次數

13樓:

參考我以前的回答:

回答1、

回答

輸入由4個字母構成的英文單詞,輸出該字母的ascii碼以及該字母的後繼字元.每行輸出資料之間用一個空格分隔

14樓:匿名使用者

#include

void main()}

輸入英文字母可能大寫或是小寫,輸出該字母在字母表中的序號

如下 include include int main void 擴充套件資料getchar 函式的作用是從計算機終端 一般為鍵盤 獲取一個無符號字元。getchar 函式只能接收一個字元,其函式值就是從輸入裝置獲取到的字元。getch與getchar基本功能相同,差別是getch直接從鍵盤獲取鍵值...

編寫C語言程式,輸出所有大寫英文字母及對應的ASCII碼,代

include main include int main return 0 如果不放心的話,可以把輸出語句裡的a都換成 int a include int main return 0 include void main printf n printf 十進位制 n for s a s z s pr...

程式設計 輸入一行字元,分別統計出其中英文字母,空格,數字和其他字元的個數

clear accept 請輸入一串字元 to xstore 0 to dyw,xyw,kg,sz,qtm len x for i 1 to m x1 substr x,i,1 k asc x1 do case case k 32 kg kg 1 case k 48 and k 57 sz sz 1...