STRESS MANAGEMENT PROGRAM
I am make program you use to relief of stress
Copy This Code
&
RUN
Use:
step 1: you press any only number to start this program.
step 2: you Enter the level 1 to 5.
step 3: Answer show.
#include <stdio.h>
int main()
{
int i, b;
int c;
char s;
printf("Press Any Number To Start:\n");
scanf("%d", &i);
printf("Enter stress level: ");
scanf("%d", &b);
if (b == 1)
{
printf("*********I Help You*********\n");
printf("Ok No Stress.\n");
printf(" Simple Ways to Relieve Stress.\n ");
printf("No.1 is Exercise.\n ");
printf("Exercise is one of the most important things you can do to combat stress.\n");
printf("Stress hormones: Exercise lowers your bodys stress hormones such as cortisol in the long run. It also helps release endorphins, which are chemicals that improve your mood and act as natural painkillers.\n");
printf("Any Doubt about stress please tell me\n");
scanf("%d", &c);
}
else if (b == 2)
{
printf("*********I Help You*********\n");
printf("Ok your Mild Stress.\n");
printf("second Ways to Relieve Stress.\n");
printf("join laughter club\n");
printf("You have seen that loudly laughing citizen in morning in public gradens.Various way to expression like communication with firends and famliy noting down youe felling with you relieve the stress.\n");
printf("Any Doubt about stress please tell me\n");
scanf("%d", &c);
}
else if (b == 3)
{
printf("*********I Help You*********\n");
printf("Ok your Moderate stress\n");
printf("Ok,Take a Deep Breathing\n");
printf("Relax Your Muscles. When you're stressed, your muscles get tense.\n");
printf("Make Time for Hobbies.\n");
printf("Talk About Your Problems.\n");
printf("Any Doubt about stress please tell me\n");
scanf("%d", &c);
}
else if (b == 4)
{
printf("*********I Help You*********\n");
printf("Ok Your Much Stress.\n");
printf("First Read Books.\n");
printf("Seen Motivational Video AND Speech.\n");
printf("Any Doubt about stress please tell me\n");
scanf("%d", &c);
}
else if (b == 5)
{
printf("*********I Help You*********\n");
printf("Ok your Extreme stress level.\n");
printf("It is so Dangerous.\n");
}
if (b == 5)
{
printf("OK,I You send stress managemant.");
}
return 0;
}
0 Comments