Hello, we are really happy that you have reached us. However, since you are viewing the forum as a visitor, you cannot benefit from many features of the forum. How about taking advantage of all the features exclusive to our members by registering? You can register right now, taking just 2 minutes of your time. We would love to see you among us.
Klavyeden girilen iki sayıyı toplayan ve gösteren C++ kodları :
#include <iostream>
using namespace std;
int main()
{
setlocale(LC_ALL,"Turkish"); //Türkçe karakter
int s1,s2,toplam;
cout<<"1. Sayıyı Girin : ";
cin>>s1;
cout<<"2. Sayıyı : ";
cin>>s2;
toplam=s1+s2...