TGTGInsighttelegram intelligenceLIVE / telegram public index
Innhold
Innholdet i innlegget
#include <iostream> #include <math.h> using namespace std; float Ayirma(float a, float b){ float ayir; ayir = a-b; return ayir; } int main(){ int qw, we, ayirma; cout<<"Enter the numbers: "; cin>>qw>>we; ayirma = Ayirma(qw, we); cout<<ayirma; return 0; }