| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 718 人关注过本帖
标题:若不使用字符数组strp,直接存回原数组st,怎么修改
取消只看楼主 加入收藏
yuntu
Rank: 1
等 级:新手上路
帖 子:1
专家分:0
注 册:2019-3-1
结帖率:0
收藏
已结贴  问题点数:20 回复次数:0 
若不使用字符数组strp,直接存回原数组st,怎么修改
#include<stdio.h>
#define k 3
void main()
{  char st[80],strp[80],tmp;
   int i=0;
   printf("enter a string\n");
   gets(st);
       while(st[i]!='\0')
       {   if(st[i]>='A' && st[i]<='Z')
       {  tmp=st[i]+k;
          if(tmp>'Z') tmp-=26;
       }
       else if(st[i]>='a' && st[i]<='z')
       { tmp=st[i]+k;
          if(tmp>'z') tmp-=26;
       }
       else
       {       tmp=st[i];}
       strp[i++]=tmp;
       }
       strp[i]='\0';
       printf("%s\n",strp);
}
搜索更多相关主题的帖子: 字符 数组 修改 tmp printf 
2019-03-01 16:37
快速回复:若不使用字符数组strp,直接存回原数组st,怎么修改
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.023229 second(s), 9 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved