C++编写依次输入26个字母如何编写

用循环结构
是输出

程序代码:
#include <iostream>
using namespace std;
void main()
{
int i;
cout<<"输出小写字母:";
for (i=0;i<26;i++)
cout << (char) (i+'a'); //小写
cout << endl;
cout<<"输出大写字母:";
for (i=0;i<26;i++)
cout << (char) (i+'A'); // 大写
cout << endl;
}
结果:
输出小写字母:abcdefghijklmnopqrstuvwxyz
输出大写字母:ABCDEFGHIJKLMNOPQRSTUVWXYZ
温馨提示:内容为网友见解,仅供参考
第1个回答  2012-04-03
#include <iostream>
using namespace std;
void main()
{
int i;
for (i=0;i<26;i++) cout << (char) (i+'a'); //小写
cout << endl;
for (i=0;i<26;i++) cout << (char) (i+'A'); // 大写
cout << endl;
}
第2个回答  2012-04-02
#include <iostream>
uisng namesapce std;
void main()
{
char zimu[26];
for(int i=0;i<26;i++)
{
cin>>zimu[i];
cout<<endl;
}
system("pause");
}
第3个回答  2012-04-02
char i = 'a';
while ('z'-i+1)
{
cout<<i;
i++;
}
cout<<endl;
第4个回答  2012-04-02
#include"stdio.h"
void main()
{
char x;
int i;
for(i=1;i<=26;i++)
{
scanf("%c",&x);
printf("%c ",x);
}
printf("\n");

}

C++编写依次输入26个字母如何编写
程序代码:include <iostream> using namespace std;void main(){ int i;cout<<"输出小写字母:";for (i=0;i<26;i++)cout << (char) (i+'a'); \/\/小写 cout << endl;cout<<"输出大写字母:";for (i=0;i<26;i++)cout << (char) (i+'A'); \/\/ 大写 cout << endl;}...

c++怎样以最简短的代码表示含26个字母的字符串
include<iostream>#include<string>using namespace std;int main(){ char a = 'a'; string s = ""; for (short i = 0; i != 26; i++) { s += (a + i); } cout << s << endl; system("pause"); return 0;} 大写就把char a='a'换成char a='A'

在c++中字符怎么按照26个英文字母进行排序?
int main(){ char s[100]="";int n,i,j,tmp,k;puts("输入你要排序的字符串");gets(s);for(i=0;s[i];i++){ k=i;for(j=i+1;s[j];j++){ if(s[j]

c语言题。 按顺序打印输出26个英文字母,
int i;for(i=0;i<26;i++)printf("%c ",i+'A');for(i=0;i<26;i++)printf("%c ",i+'a');return 0;}

请教关于C++中进行连续输入26个字母a-z的问题
假设链表为 ListTable 含有字段char name; ListTable next;void writeTo(ListTable list){ ListTable * h=list;for(int i='A';i<='z';i++){ h->name=(char)i;h=h->next;} }

用C语言进行编程,输出26个字母和他们的ASCII码,每行输出两组数据_百度...
O:79 P:80 Q:81 R:82 S:83 T:84 U:85 V:86 W:87 X:88 Y:89 Z:90 请按任意键继续. . .因为你没有说明是要大写字母还是小写字母,故以大写为例。如果你想输出小写字母则for中ch从a到z即可,若想大小写对应输出,则设立ch1,ch2分别显示大小写即可。

用c++编写程序:倒序打印26个英文字母,简单一点,初学者,多谢
从Z循环到A就可以了。include <iostream>using namespace std;int main(){ char c; for(c='Z'; c>='A'; c--) cout << c; cout << endl; return 0;}

用C++编写程序,分别正向、逆向输出26个大写英文字母,用最简单的程序好...
include <iostream.h> int main(){ for (char arg = 'A'; arg <= 'Z'; arg++)cout << arg << " ";cout << endl;for (arg = 'Z'; arg >= 'A'; arg--)cout << arg << " ";cout << endl;return 0;} \/\/本程序由520huiqin编写,欢迎分享,盗窃可耻 ...

c++,字母转换为数字,即输入a~z可分别得到0~25
建议你用数组的方式来实现。也就是说用一个长度26的char类型数组顺序保存26个字母,则对应的下标号就是你要的数字。取得输入的字母后,用for循环的办法找到对应的字母,输出其下标即可。

用一次for循环打印输出26个英文字母及ASCII码?
include <stdio.h> int main(){ char c;for(c='A';c<='Z';c++)printf("%d: %c\\t",c,c);return 0;}

相似回答