hola_ mundo_con_iteraciones.cpp

来自「Topics Practices: Programming and Nume」· C++ 代码 · 共 14 行

CPP
14
字号
//Hola mundo con iteraciones

#include<stdio.h>
#include<conio.h>
main()
{
for(int i=0; i<1000; ++i)
printf("%d Hola mundo \n", i);
getch();
}


      

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?