Computer Science, asked by pooja111200713, 2 months ago

• Add 30, 67, 45, 100
· Subtract 45 from 75
• Multiply 156 by 3
• 25 is less than 10
• 56 is greater than 35
1. Write the commands using only PRINT statements.
Divide 97 by 7 with remainder

Answers

Answered by adeebamudasir39
0

Answer:

sorry

Explanation:

Add 30, 67, 45, 100

· Subtract 45 from 75

• Multiply 156 by 3

• 25 is less than 10

• 56 is greater than 35

1. Write the commands using only PRINT statements.

Divide 97 by 7 with remainder

sorry

Answered by chandu200114
1

Answer:

printf ("30+67+45+100=%d",30+67+45+100);

printf ("75-45=%d",75-45);

printf ("156*3=%d",156*3);

printf("%d<%d",25,10);

printf("%d>%d",56,35);

printf ("97/7=%d \n 97%7=%d \n",97/7,97%7);

Explanation:

Syntax of printf

printf (" Data to be printed", operands to be printed);

Similar questions