TGTGInsighttelegram intelligenceLIVE / telegram public index
← Computer Programming
Computer Programming avatar

TGINSIGHT POST

Post #182

@cpp_sirius

Computer Programming

Views166Post view count
PostedOct 710/07/2025, 04:59 PM
Post content

Post content

#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; }