View Code of Problem 26

#include <stdio.h>

int main(int argc, const char * argv[]) {
    // insert code here...
    int T;
    scanf("%d",&T);
    while (T--) {
        int m;
        float n;
        scanf("%d",&m);
        printf("%.2f\n",(m-32)*1.0*5/9);
    }
    return 0;
}

Double click to view unformatted code.


Back to problem 26