When you go to the mail go to file and click new it should be in there as search folder
Answer:
// program in C++.
#include <bits/stdc++.h>
using namespace std;
// main function
int main()
{
// variable
int inp_month;
cout<<"Enter month:";
// read month
cin>>inp_month;
// if month is february
if(inp_month==2)
cout<<"Number of days in month:28"<<endl;
// if month is 4 or 6 or 9 or 11
else if(inp_month==4||inp_month==6||inp_month==9||inp_month==11)
cout<<"Number of days in month:30"<<endl;
else
// for others month
cout<<"Number of days in month:31"<<endl;
return 0;
}
Explanation:
Read month from user and assign it to variable "inp_month".If month is 2 then there is 28 days in the month.If input month is 4 or 6 or 9 or 11 then there is 30 days in the month.For other month there will be 31 days in month.We assume there is no leap year.
Output:
Enter month:4
Number of days in month:30
The phase where developers identify the particular features and functions of a new system is the requirement and analysis stage.
<h3>What is system development?</h3>
System development is the process of defining, designing, testing, and implementing a new software application or program.
System development has a life cycle. The primary stages are as follows;
- Operation and maintenance.
Therefore, the phase where developers identify the particular features and functions of a new system is the requirement and analysis stage.
learn more on system development here: brainly.com/question/13042526
#SPJ12
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
Answer:
C
Explanation:
Jailbreaking is the process of bypassing the built-in limitations and protections of a mobile device