នេះជាកូដ Do while loop ក្នុង C++
#include<iostream>
using namespace std;
int main()
{
int x=0;
do
{
cout<<"Count this value is 9:"<<endl;
x=x+1;
}
while (x <=8);
return 0;
}
ជាទំព័រចែករំលែកនូវចំនេះដឹងទាក់ទងនិងបច្ចេកវិទ្យា
0 comments:
Post a Comment