• 2022-06-16
    统计50~100之间不能被3整除的数,并输出结果。
  • #include int main() { int n,count=0; for(n=50;n<=100;n++) { if(n%3==0) continue; printf("%d\t",n); } return 0; }

    内容

    • 0

      将1~100之间不能被3整除的数输出。

    • 1

      编程输出100到1000之间能被3整除但不能被5整除的数。

    • 2

      编程实现 输出100—200之间同时能被3和5整除的数,并统计其个数。

    • 3

      编程实现:输出100~200之间的不能被3整除的数。

    • 4

      使用while语句输出100以内所有能被3整除但不能被6整除的整数,并输出结果