三九宝宝网宝宝教育教学论文

C语言编写一个程序例如将字母A变成E a变成e即变成其后第四个

03月12日 编辑 39baobao.com

[用C语言编写一个将若干单词按字母排序的程序请各位高手帮忙]//--------------------------------------------------------------------------- #include <stdio.h> #include <stdlib.h> #include <ctype.h> #define FILENAME "c:\\a.t...+阅读

帮人调好的,借来供LZ参考

#include

int main(void)

{

unsigned char c;

while( (c = getchar()) != '\n')

{

if( (c >= 'a' & c <= 'z') ||(c >= 'A' & c <= 'Z') )//判断是否为大小写字母。

{

c = c + 4;

if(c > 'Z' & c <= 'Z'+ 4 || c >'z' & c <= 'z'+4 ) //超出部分处理

{

c = c - 26;

}

printf("%c", c);

}

}

printf("\n");

return 0;

}

vb问题!将字母A变成字母E a变成e即变成其后的第4个字母 W变

Private Sub Form_Click()

Dim i As Integer, c As Integer, k As Integer

k = 4

Label1.Caption = ""

For i = 1 To Len(Text1.Text)

c = Asc(Mid(Text1.Text, i, 1)) + k

If c > Asc("z") Or c > Asc("Z") And c < Asc("a") + k Then c = c - 26

Label1.Caption = Label1.Caption & Chr(c)

Next

End Sub

以上代码用Text1放需要加密的字符串,抄Label1放加密后的字符串。点击窗体执行。zd

求解C题目

#include

using namespace std;

void encode(char * s)

{

char * x = s, c = 0;

if (!x) return;

while(*x) {

c = *x;

if (c >= 'a' & c if (c >= 'w' & c if (c >= 'A' & c if (c >= 'W' & c x++;

}

}

int main(void)

{

char s[256] = "";

for(;;) {

cin>>s;

if(strstr(s, "exit")) break;

encode(s);

cout}

return 0;

}

救急啊设计一个程序要求完成以下功能:

//译码 #include #include int main() { char c; int s=0,b=0,n=0; while((c=getchar())!='\n') { if(c>='a'&&c<='z') { c=(c-'a'+4)%26+'a'; s=s+1; } if(c>='A'&&c<='Z') { c=(c-'A'+4)%26+'A'; b=b+1; } if(c>='0'&&c<='9') { c=(c-'0'+1)%10+'0'; n=n+1; } printf("%c",c); } printf("\n"); printf("小写字母:%d个\n",s); printf("小写字母:%d个\n",b); printf("小写字母:%d个\n",n); return 0; } 解码类似

以下为关联文档:

将两个数组合并到一个数组并排序的c语言程序编写这里是借用第三个数组。 原理:先将两个数组复制到第三个数组中,然后对第三个数组排序 如果不使用第三个函数,那么下面这个函数一样可以做到,不过函数声明就要改成: char* fun(cha...

用C语言编写的代码程序 B A可立即执行 B是一个源程序 CC语言写的代码程序肯定是源程序,B是对的,它不能立即执行,必须经过编译成可执行代码, 所以A是错误的; 如果这个源程序中不含有main函数,编译后的代码也是不可执行的,所以C是错误的; C...

用c语言编写一个简单的程序main() { int a,b,i; bool flag = true; for (i = 0; i < 6; i++) { scanf("%d", &a); if (flag) { b = a; flag = false; } else { if (b > a) b = a; } } prinf("%d", b); }...

求助C语言编写一个简单的程序#include "stdio.h" #include "conio.h" #include "stdlib.h" void main( ) { FILE *fp; int flag,t; printf("输入1为输入数据,0为求平均数并输出\n"); scanf("%d",&flag); if (flag) {...

请大家编写一个C语言程序#include<stdio.h> int main() { int a[3][5],i,j,min; printf ("input a[][]:\n"); for (i=0;i<3;i++) { for(j=0;j<5;j++) scanf("%d",&a[i][j]); } min=a[0][0]; for(i=0;i<3...

C语言编写一个图形程序#include <stdio.h> void doprint(int i,int n) { int j; for(j=1;j<n+1-i;j++) { printf("%s"," "); } for(j=1;j<i+1;j++) { printf("%s","* "); } printf("%s","\n"); } void main()...

求问 C语言怎么设计一个程序输入一个大写字母从这个字母#include <stdio.h> void main() { char x; printf("请输入大写字母¸:\n"); scanf("%c",&x); while(x>='A') //与A比较,未到A就继续输出,如果有不明这一步,请去了解ASCII码表中大写字...

c语言程序设计内容:输入大写字母小写字母数字将大写字1 2 3 4 5 6 7 8 9 10 #include <stdio.h> intmain() { charc; c = getchar(); if(c>='a'&c<='z')printf("%c\n", c-'a'+'A'); elseif(c>='A'&c<='Z')printf("%c\n", c-'A...

用C语言编写一个程序用C语言编写一个程序,C语言编写程序:#include <stdio.h> main() { char *month_name[13]={"illegal month","January","February","March","April", "May","June","July","August","September","Oct...

推荐阅读
图文推荐