All pastes #2102565 Raw Edit

Stuff

public text v1 · immutable
#2102565 ·published 2012-01-12 11:36 UTC
rendered paste body
#include <iostream>
using namespace std;

int main(void)

{
float a0; float a1; float x;
	
a0=10.0;

a1=5.0
	
x = -a0/a1;
	
cout<<"x="<<x<<endl;
	
return(0);
	
}