STRİNG TİPİNDE GİRİLEN SAYILARI İNTEGER TİPİNDE GÖNDEREN C++ PROGRAMI

#include <iostream>
#include <cmath>
using namespace std;
int don(string s)
{int q=0;
    int t=0;
    string sayi="0123456789";
    for(int j=s.length()-1;j>=0;j--)


           for(int i=0;i<sayi.length();i++)
        if(s[j]==sayi[i]){
           t+=pow(10,s.length()-1-j)*i;
           break;}
return t; }
int main()
{
    cout<<don("754")+1;
}

Hiç yorum yok:

Yorum Gönder

Spring Boot Uygulamasını Heroku üzerinde Deploy Etme

Bu yazımızda sizlere spring boot ile yazılmış basit bir Rest api'nin heroku üzerinde nasıl deploy edebileceğimizi göstereceğim. Önce ...