要将"China"译成密码,译码规律是:用原来字母后面的第4个字母代替原来的字母.
例如,字母"A"后面第4个字母是"E"."E"代替"A"。因此,"China"应译为"Glmre"。
请编一程序,用赋初值的方法使cl、c2、c3、c4、c5五个变量的值分别为,’C’、’h’、’i’、’n’、’a’,经过运算,使c1、c2、c3、c4、c5分别变为’G’、’l’、’m’、’r’、’e’,并输出。
#include<iostream>
#include<string>
using namespace std;
int main(){
string str;
cout << "please enter the str:" <<endl;
cin >> str;
for (int i = 0; i<str.size(); i++){
cout <<(char)(str[i]+4) ;
}
return 0;
}
str[0] + 4输出数字:c所对应的ASCII码 +4
string可以通过size()函数来获取长度
在java中通过length()获取长度
java和c++中,声明方法可以相同:
C++:
string str;
str = "hello";
//c风格
//char str [] = "hello C++";
java:
String str;
str = "hello ";
//用String类定义
String str1=new String("Hello Java");
String str2=new String(str1);
原文:https://www.cnblogs.com/huangziyan/p/11808862.html