Follow along with the video below to see how to install our site as a web app on your home screen.
Not: This feature may not be available in some browsers.
[COLOR=red]#include <iostream>[/COLOR]
[COLOR=red]#include <windows.h>[/COLOR]
[COLOR=red]#include <stdio.h>[/COLOR]
[COLOR=red]#include <string>[/COLOR]
[COLOR=red]using namespace std;[/COLOR]
[COLOR=red]int main(){[/COLOR]
[COLOR=red]string a; [/COLOR]
[COLOR=red]int b,c;[/COLOR]
[COLOR=red] c = 0;[/COLOR]
[COLOR=red] b = 0;[/COLOR]
[COLOR=red]system("cls");[/COLOR]
[COLOR=red] cout << "lütfen bir yazi veya sayi giriniz: ";[/COLOR]
[COLOR=red] cin >> a;[/COLOR]
[COLOR=red] if ( a == "x" || a == "exit" ){[/COLOR]
[COLOR=red] return 1;[/COLOR]
[COLOR=red] }[/COLOR]
[COLOR=red] cout << "Lütfen yazdiginiz sayiyi programin kaç kez tekrarlicagini yazin(ör:1,2,3,10): ";[/COLOR]
[COLOR=red] cin >> b;[/COLOR]
[COLOR=red] while ( c != b ){[/COLOR]
[COLOR=red] c = c + 1;[/COLOR]
[COLOR=red] cout << a;[/COLOR]
[COLOR=red] cout << "\n";[/COLOR]
[COLOR=red]}// while parentez[/COLOR]
[COLOR=red]cout << "\n\n";[/COLOR]
[COLOR=red]system("PAUSE");[/COLOR]
[COLOR=red]main();[/COLOR]
[COLOR=red]return 1;[/COLOR]
[COLOR=red]}[/COLOR]
Bir iki düzenleme ile istediğim şekle getirebileceğime inanıyorumYardımcı olduğun için teşekkürler.