Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include<stdio.h>
- #include<conio.h>
- int main()
- {
- int num1, num2, num3;
- printf("Enter power value: ");
- scanf("%d",&num1);
- printf("Enter Endurance value: ");
- scanf("%d",&num2);
- printf("Enter Tone value: ");
- scanf("%d",&num3);
- if(num1 ==num2 ==num3)
- {
- printf("capable and 6 repeats!");
- }
- else if(num1 > num2 > num3)
- {
- printf("Do the exercises with a small weight of 5-10 kg and 20 repeats!");
- }
- else
- {
- printf("Do the exercises with a moderate weight up to 20 kg and 15 repetitions!");
- }
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment