mirror of
https://github.com/Estom/notes.git
synced 2026-05-11 11:06:25 +08:00
14 lines
154 B
C++
14 lines
154 B
C++
#include <iostream>
|
|
|
|
using namespace std;
|
|
|
|
|
|
int main(){
|
|
int i=0;
|
|
while(i<10){
|
|
i++;
|
|
if(i>100){
|
|
break;
|
|
}
|
|
}
|
|
} |