432 subscribers
155 photos
10 videos
25 files
67 links
For Any Information @TechnerdGuy
πŸ†˜ Pre-Engineering Students Struggling with C++? πŸ˜₯ Fear not! πŸ’ͺ This channel is your coding lifesaver! πŸš‘ Learn the basics, ace your course! πŸ’―
Download Telegram
Error variable age local slehone nebr enbe yemlew
This one also possible



#include <iostream>
using namespace std;
int age = 21;

void add();

int main() {
     add();
    return 0;
}

void add() {
    cout << "Age: " << age << endl;
}

Output :21
I think gelts nw selezi enketel adel......
πŸ”₯3😐2πŸ—Ώ2πŸ₯΄1
C++ Basics
I think gelts nw selezi enketel adel......
Fetachun atekeskesuπŸ˜” yalegebachun negr Kale teykugn.....
πŸ€·β€β™€3😁1
Quiz:

Ehen display meyaderg codu tsafu.....
Ouput: \ (backslash symbol display adergut)
Forwarded from Dagi
Ehen ensera ena lezare yebekanal
Write the output of thisπŸ‘‡ code?

#include <iostream>
using namespace std;

int main( ) {
int n = 4, k = 2;
cout<< ++n << endl;

cout<< n++ << endl;
cout<< n << endl;
cout<< --n << endl;
cout<< n << endl;
cout<< n--<< endl;

cout<< n + k << endl;
cout<< k << endl;
cout<< " n" << endl;
cout<< "\n" << endl;
cout<< " n * n = ";
cout<< n * n << endl;
cout<< 'n' << endl;
return 0;
}
πŸ‘8πŸ‘1
Lezare yebkan ezi gar.....kmr hulachunem amesegnalewπŸ™
πŸ”₯3πŸ‘1
Esti class endet nebr endeshashal meteflgut negr ale......?
Leteyakeyachu hulu nge melse sexalew
πŸ‘12
Ahun gena dorm gebaw ena yelel dekmognal bezi lay demo rehab legelegn nwπŸ˜”
😁6
G'morning, fam! πŸ€“
🫑10πŸ‘¨β€πŸ’»2
Should I host a livestream today where we just  talk about  what we've seen so far?
πŸ”₯5
C++ Basics
Should I host a livestream today where we just  talk about  what we've seen so far?
Maybe we'll do it another day πŸ—“οΈ. It's Sunday beqa, just chill adergu 😌. I feel like hule class eyalku I've been aschenkwchu 😩. Kmr, don't stress yourself becha chill eyadergachu anbebu πŸ™

β€”'DON'T STUDY HARD, STUDY SMART' πŸ§ πŸ“š! πŸ’―"


@ProgrammingWithFaith
πŸ’―11πŸ‘Ž1
πŸ‘1
1.
#include <iostream>
using namespace std;

int main() {
    int numb1, numb2;

    cout << "Please Enter Number 1:" << endl;
    cin >> numb1;
    cout << "Please Enter Number 2:" << endl;
    cin >> numb2;
    cout << "X + Y :" << numb1 + numb2 << endl;

    if (numb2 != 0) {
        cout << "X / Y :" << numb1 / numb2 << endl;
    }
    cout << "X * Y :" << numb1 * numb2 << endl;
    cout << "X - Y :" << numb1 - numb2 << endl;

    if (numb1 > numb2) {
        cout << "Number " << numb1 << " is Greater than Number " << numb2 << endl;
    } else if (numb1 < numb2) {
        cout << "Number " << numb1 << " is Greater than Number " << numb2 << endl;
    } else {
        cout << "They are equal" << endl;
    }
    return 0;
}
πŸ₯°5πŸ‘4
C++ Basics
Photo
2.
#include <iostream>

using namespace std;

const double PI = 3.14159265358979323846; 

int main() {
    double radius;
    double circumference;

    cout << "Please enter the radius: " << endl;
    cin >> radius;

    if (radius <= 0) {
        cout << "Radius must be a positive number." << endl;
        return 1;
    }

    circumference = 2 * PI * radius;

    cout << "The circumference of the circle is: " << circumference << endl;
    return 0;
}
πŸ‘2πŸ”₯2