|
|
การตัดข้อความบางส่วน ในภาษา C++ ครับใช้ erase หรือ substr หรือครับ |
|
|
|
|
|
|
|
ใช้ setw()+setfill() หรือ printf()
Code (C++)
#include <iostream>
#include <string>
#include <iomanip>
using namespace std;
int main() {
string x = "012";
int y = 5;
printf("x = %02d, y = %02d\n", stoi(x), y);
cout << "x = " << setw(5) << setfill('0') << x
<< ", y = " << setw(5) << setfill('0') << y << endl;
return 0;
}
|
|
|
|
|
Date :
2022-09-13 09:22:44 |
By :
009 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|