Thứ Tư, 1 tháng 4, 2015

số lần thực hiện tối thiểu


#include <stdio.h>
#include <conio.h>
#include <iostream>
using namespace std;
int main()
{
    int i=0;
while(i<=10)
{
        i++;
if(i==2) continue;
if(i==3) break;
cout<<i;

}
getch();
return 0;
}

Không có nhận xét nào: