print("สวัสดี")
print("สวัสดี")
print("สวัสดี")
...
print("สวัสดี")
while (condition) {
// code block to be executed
}
#include <iostream>
using namespace std;
int main()
{
string msg;
while(msg != "quit") {
cout << "ข้อความของคุณ หรือ พิมพ์ 'quit' เพื่อจบการทำงาน: ";
cin >> msg;
cout << "ข้อความที่ได้รับ: " << msg << endl;
}
return 0;
}
for (statement 1; statement 2; statement 3) {
// code block to be executed
}
#include <iostream>
using namespace std;
int main()
{
for(int i=2; i<=12; i++) {
cout << "แม่ " << i << endl;
for(int j=1; j<=12; j++){
cout << i << " X " << j << " = " << i*j << endl;
}
cout << "==================" << endl;
}
return 0;
}
for (int i = 0; i < 10; i++) {
if (i == 3) {
break;
}
cout << i << "\n";
}
for (int i = 0; i < 10; i++) {
if (i == 3) {
continue;
}
cout << i << "\n";
}
Aj. Krit Th.
https://www.kritth.com