It might because of many reasons:
- Fan 1 is not connected to the Program (via Bluetooth, WIFI, or wired)
- The code made to make Fan 1 start up has a bug or an error
- Fan 1 has a hardware problem
- Fan 1 is out of reach for the electronically controller to reach
- Fan 1 is not connected to a power supply (tho)
<u><em>sorry if my answers don't help solve your problem </em></u>
Most likely the answer is to delete cookies, as it cuts down on the amount of tracking sites can do to you.
Answer:
// here is code in the C++.
#include <bits/stdc++.h>
using namespace std;
// main function
int main() {
// variable to store the input
int birth_month,birth_year;
cout<<"enter birth month:";
// read the birth month
cin>>birth_month;
cout<<"enter birth year:";
// read the birth year
cin>>birth_year;
// print the output
cout<<birth_month<<"/"<<birth_year<<endl;
return 0;
}
Explanation:
Declare two variables to store the birth month and birth year.Read the inputs from the user and assign it the variables.Print the birth month and year separated by a slash "/".
Output:
enter birth month:1
enter birth year:2000
1/2000