7.2.. Napisati program za odredjivanje y po formuli:

// 07212509
#include <iostream>
using namespace std;

int main(){
	int b,y;
	
	cout << "Broj: ";
	cin >> b;       // ulaz
	
	if(b>0)         // b > 0 ?
		y=1;        // da, y = 1
	else            // inace
		y=3;        // y = 3
	cout << "Y= " << y << endl;  // ispis

	return 0;
}

II varijanta
// 07212509
#include <iostream>
using namespace std;

int main(){
	int b,y;
	
	cout<<"Unesite B: ";
	cin>>b;
	
	if(b>0){
		y=1;
		cout<<"Y= "<<y<<endl;
	}
	else{
		y=3;
		cout<<"Y= "<<y<<endl;
	}
	return 0;
}

Ispis na ekranu:

Index