#include main() { float weekly, yearly; /*declarations*/ printf("what is you annual pay? "); scanf("%f", &yearly); weekly = (yearly + 10 - 5) / 52; /*assignment statement*/ printf("\n\nyour weekly pay is $%2.5f", weekly);/*.2f limits float decimal to two points, changing the number will create more decimals*/ return; }