mong mọi người giúp em ạ, em mới học bài if statement trên DNH nên thử sức chút ạ, mà e chưa hiểu e bị lỗi chỗ nào ạ
Mã
#include <iostream>
#include <stdio.h>
#include <cstdlib>
using namespace std;
#include <cstdlib>
int GetRandom(int min,int max){
return min + (int)(rand()*(max-min+1.0)/(1.0+RAND_MAX));
}
int main()
{
int randomnumber= GetRandom(50,100);
int doan;
cout<<"If the number is smaller than 50, type 0; if it bigger, type 1\n";
cout<<"Guess the number is bigger or smaller than 50: "<<doan;
cin<<doan;
if(randomnumber>50){
if(doan==0){
cout<<"Wrong! The number is "<<randomnumber <<randomnumber ">50";
}
else{
cout<<"Right! The number is "<<randomnumber;
}
}
else{
if(doan==1){
cout<<"Wrong! The number is "<<randomnumber <<randomnumber "<50";
}
else{
cout<<"Right! The number is "<<randomnumber;
}
}
system("pause");
return 0;
}