cs161AWinter2024/tostr.cpp

13 lines
207 B
C++
Raw Permalink Normal View History

2024-02-29 02:08:39 +00:00
#include <iostream>
#include <string>
using namespace std;
int main(){
int thing = 300;
char c = 'a';
double d = 3.14;
cout << to_string(thing) + to_string(c) + to_string(d) << endl;
return 0;
}