#include int main() { // What do I need to store? float v1; float v2; float v3; // What do I need from the user? // NOTHING // What do I need to do? // Assign values v1 = 5; v2 = -4.5; v3 = 11.259; // What do I need to tell the user? // The values of the numbers printf("v1 = %.0f v2 = %.1f v3 = %.2f", v1, v2, v3); }