其他分享
首页 > 其他分享> > 500以内所有的奇数偶数

500以内所有的奇数偶数

作者:互联网

 1 #include <stdio.h>
 2 #include <stdlib.h>
 3 
 4 /* run this program using the console pauser or add your own getch, system("pause") or input loop */
 5 
 6 int main(int argc, char *argv[]) {
 7 
 8         int i=0;
 9         for(i=0;i<=500;i++)
10         {
11             if(i%2==0)//I%==1
12             {
13                 printf("%d\t",i);
14             }
15          }    
16     return 0;
17 }

标签:getch,own,pauser,奇数,int,偶数,include,your,500
来源: https://www.cnblogs.com/MegaByte/p/12067102.html