Untitled
Guest 97 7th Nov, 2024
#include <iostream>
using namespace std;
int main(){
cout<<"Podaj \n dwie liczby"<<endl;
float a, b;
cin>>a; //cin>>a>>b;
cin>>b;
int wynik; // cout<<"Wynik: "<<a+b;
wynik = a+b;
cout<<"wynik dodawania to:"<<wynik;
if(b!=0){
float dzielenie; //liczby zmiennoprzecinkowe
dzielenie=a/b;
cout<<"Wynik dzielenia"<<dzielenie;
}
else{
cout<<"nie dzelimy przez 0";
}
return 0;
}
To share this paste please copy this url and send to your friends
RAW Paste Data