[ create a new paste ] login | about

Link: http://codepad.org/0TBy0Xbs    [ raw code | output | fork ]

C, pasted on Oct 21:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include<stdio.h>
 
int main()
{
    float c = 0, a = 0;
    int i = 0,b=0;
    for(i=0; i<=300; i++)
    {
        b = (int)a;
        if(b%20==0)
        {
        c = (5*( a - 32))/9;
        printf("%4.0f%10.1f\n", a, c);
        }
    a++;
    }
}


Output:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
   0     -17.8
  20      -6.7
  40       4.4
  60      15.6
  80      26.7
 100      37.8
 120      48.9
 140      60.0
 160      71.1
 180      82.2
 200      93.3
 220     104.4
 240     115.6
 260     126.7
 280     137.8
 300     148.9

Exited: ExitFailure 15


Create a new paste based on this one


Comments: