Instantly convert code snippets from C++ to Scala with our free online code converter. Transform your code easily and accurately.
Perfect for vibe-coding with Cursor. Save 32+ hours of development time with Next.js, Supabase, Auth, Payments, and everything you need to launch faster.
Cursor Rules & MCP
AI-assisted development with Supabase MCP integration
Save 32+ Hours
Skip the boilerplate and focus on your product
Complete Backend
Supabase DB, Auth, Storage & Stripe payments
Lifetime Access
One-time payment, unlimited projects
We prioritize your code's security and privacy. Your code is not stored on our servers and is only temporarily processed for conversion. We use OpenAI's secure servers for the conversion process, ensuring your code remains confidential.
C++ is a general-purpose programming language created by Bjarne Stroustrup as an extension of the C programming language, or "C with Classes".
Scala is a general-purpose programming language providing support for functional programming and a strong static type system.
#include <iostream>
#include <string>
#include <algorithm>
using namespace std;
bool isPalindrome(string str) {
string clean;
// Keep alphanumeric chars and convert to lowercase
for(char c : str) {
if(isalnum(c)) {
clean += tolower(c);
}
}
string reversed = clean;
reverse(reversed.begin(), reversed.end());
return clean == reversed;
}
int main() {
cout << boolalpha;
cout << isPalindrome("A man, a plan, a canal: Panama") << endl; // true
cout << isPalindrome("race a car") << endl; // false
return 0;
}
object PalindromeChecker {
def isPalindrome(str: String): Boolean = {
val clean = str.toLowerCase.filter(_.isLetterOrDigit)
clean == clean.reverse
}
def main(args: Array[String]): Unit = {
println(isPalindrome("A man, a plan, a canal: Panama")) // true
println(isPalindrome("race a car")) // false
}
}
#include <iostream>
#include <vector>
using namespace std;
void bubbleSort(vector<int>& arr) {
int n = arr.size();
for(int i = 0; i < n; i++) {
for(int j = 0; j < n - i - 1; j++) {
if(arr[j] > arr[j + 1]) {
swap(arr[j], arr[j + 1]);
}
}
}
}
int main() {
vector<int> arr = {64, 34, 25, 12, 22, 11, 90};
bubbleSort(arr);
for(int num : arr) {
cout << num << " ";
}
return 0;
}
object BubbleSort {
def bubbleSort(arr: Array[Int]): Array[Int] = {
val n = arr.length
for (i <- 0 until n; j <- 0 until n - i - 1) {
if (arr(j) > arr(j + 1)) {
val temp = arr(j)
arr(j) = arr(j + 1)
arr(j + 1) = temp
}
}
arr
}
def main(args: Array[String]): Unit = {
val arr = Array(64, 34, 25, 12, 22, 11, 90)
println(bubbleSort(arr).mkString(" "))
}
}
Convert C++ to Python
Open ConverterConvert C++ to JavaScript
Open ConverterConvert C++ to TypeScript
Open ConverterConvert C++ to Java
Open ConverterConvert C++ to C
Open ConverterConvert C++ to C#
Open ConverterConvert C++ to Go
Open ConverterConvert C++ to Dart
Open ConverterConvert C++ to Ruby
Open ConverterConvert C++ to Swift
Open ConverterConvert C++ to Kotlin
Open ConverterConvert C++ to Rust
Open ConverterConvert C++ to PHP
Open ConverterConvert C++ to R
Open ConverterConvert C++ to Haskell
Open ConverterConvert C++ to Julia
Open ConverterConvert C++ to MATLAB
Open ConverterConvert C++ to Lua
Open ConverterConvert C++ to Assembly
Open ConverterConvert C++ to Perl
Open ConverterConvert C++ to Groovy
Open ConverterConvert C++ to Elixir
Open ConverterConvert C++ to F#
Open ConverterConvert C++ to Clojure
Open ConverterConvert C++ to Delphi
Open Converter