第4話 逆翻訳をして確かめを行う
を実現するプログラム例
#include<iostream>
#include<ctime>
using namespace std;
int f(int* y,int n);
long long h1(long long x,int* y,int n,int max);
void h2(long long w,int* y,int n,int j);
int g(long long x,int* y,int n,int i);
void ts(int* y,int* z,int max,int i);
void main(){
srand(time(NULL));
int y[10],z[10],n,max;
int t=0;
long long w;
while(1){
cout<<"何進数のデータを作成しますか?"<<endl;
t=1;
break;
}
if(t==1)scanf("%d",&n);
max=f(y,n);
long long x;
x=h1(0,y,n,max);
w=x;
int i;
i=g(x,z,n,0);
cout<<endl;
h2(w,z,n,i);
ts(y,z,max,i);
cout<<"プロジェクト終了"<<endl;
}
int f(int* y,int n){
int max,i;
max=rand()%10;
for(i=0;i<=max;i++){
if(i==0){
while(1){
y[i]=rand()%n;
if(y[i]>0)break;
}
}
if(i>0)y[i]=rand()%n;
}
return(max);
}
int g(long long x,int* y,int n,int i){
y[i]=x%n;
x=x/n;
i++;
if(x==0)return(i);
i=g(x,y,n,i);
}
long long h1(long long x,int* y,int n,int max){
int i;
cout<<n<<"進数の";
for(i=0;i<=max;i++){
if(y[i]<10)cout<<y[i];
if(y[i]==10)cout<<"A";
if(y[i]==11)cout<<"B";
if(y[i]==12)cout<<"C";
if(y[i]==13)cout<<"D";
if(y[i]==14)cout<<"E";
if(y[i]==15)cout<<"F";
}
cout<<"は10進数では"<<endl;
for(i=0;i<=max;i++){
x+=y[i];
if(i<max)x*=n;
}
cout<<x<<"です。"<<endl;
return(x);
}
void h2(long long w,int* y,int n,int j){
cout<<"10進数の"<<w<<"は"<<n<<"進数では"<<endl;
for(int i=j-1;i>=0;i--){
if(y[i]<10)cout<<y[i];
if(y[i]==10)cout<<"A";
if(y[i]==11)cout<<"B";
if(y[i]==12)cout<<"C";
if(y[i]==13)cout<<"D";
if(y[i]==14)cout<<"E";
if(y[i]==15)cout<<"F";
}
cout<<"です"<<endl;
}
void ts(int* y,int* z,int max,int j){
if(max!=j-1){
cout<<"誤答です。"<<endl;
return;
}
for(int i=0;i<=max;i++){
if(y[max-i]!=z[i]){
cout<<"誤答です。"<<endl;
return;
}
}
cout<<"正答です。"<<endl;
}
参考ダウンロード添付ファイル
第22講で作ったプログラム
#include<iostream>
#include<ctime>
using namespace std;
int f(int x,int* y,int n,int i);
void h(int x,int* y,int n,int i);
void main(){
srand(time(NULL));
int x,y[100000],w,n,i=0;
int t=0;
while(1){
cout<<"何進数に翻訳しますか?"<<endl;
t=1;
break;
}
if(t==1)scanf("%d",&n);
x=rand();
w=x;
if(x>0)i=f(x,y,n,i); else y[0];
h(w,y,n,i);
cout<<"プロジェクト終了"<<endl;
}
int f(int x,int* y,int n,int i){
y[i]=x%n;
x=x/n;
i++;
if(x==0)return(i);
i=f(x,y,n,i);
return(i);
}
void h(int w,int* y,int n,int j){
cout<<"10進数の"<<w<<"は"<<n<<"進数では"<<endl;
for(int i=j-1;i>=0;i--){
if(y[i]<10)cout<<y[i];
if(y[i]==10)cout<<"A";
if(y[i]==11)cout<<"B";
if(y[i]==12)cout<<"C";
if(y[i]==13)cout<<"D";
if(y[i]==14)cout<<"E";
if(y[i]==15)cout<<"F";
}
cout<<"です"<<endl;
}
参考ダウンロード添付ファイル
についても逆翻訳をして、確かめを行って下さい。