猿问

要求用for循环和if语句

编写程序从键盘得到一个1到100之间

   的整数,把这个整数到100之间

所有和7无关的整数都打印在屏幕上


mrhouse
浏览 1165回答 1
1回答

咸鱼干儿

#include <stdio.h> int main(){ int x; for(x=1;x<=100;x++){       if( x%10==7 || x/10%10 ==7){          continue;      }else{           printf("%d ", x);       } } }
随时随地看视频慕课网APP
我要回答