hero_奥特曼
2019-03-12 11:08
using System;
using System.Collections.Generic;
using System.Text;
namespace Test
{
class Program
{
static void Main(string[] args)
{
//声明整型数组,保存一组整数
int[] num = new int[] { 3,34,43,2,11,19,30,55,20};
bool on_off =false ;
foreach (int x in num)
if(x%7==0)
{
on_off = true;
break;
}
if(on_off)
{
Console.Write("有7的整倍数");
}
else
{
Console.Write("没有7的整倍数");
}
}
}
}
foreach(int x in num) { if(x%7 == 0) { on_off = true; break; } if(on_off) { Console.Write("有7的整倍数"); } else { Console.Write("没有7的整倍数"); } }
C#开发轻松入门
254118 学习 · 1459 问题
相似问题