如何将 5 个随机 ascii 值转换为字符?
迅速的:
随机生成从 97 到 122 的 5 个 ascii 值(所有字母表的 ascii 值)。边走边确定每个ascii值对应的字母,输出5个字母组成的单词。
我的代码:
#include <iostream>
#include <time.h>
#include <stdlib.h>
#include <string.h>
using namespace std;
int main ()
{
srand (time(NULL));
int val1= rand()%122+97;
int val2= rand()%122+97;
int val3= rand()%122+97;
int val4= rand()%122+97;
int val5= rand()%122+97
cout<<val1<<" and "<<val2<<" and "<<val3<<" and "<<val4<<" and "<<val15<<". "<<
return 0;
}