#include <stdio.h> int main() { double a, b; a = 80.5; b = 22.34; printf("%.2f + %.2f = %.2f \n", a, b, a+b); return 0; }
To embed this project on your website, copy the following code and paste it into your website's HTML: