ylbtech-Arithmetic:Console-算法-求0—7所能组成的奇数个数 |
1.A,Demo(案例) |
【程序83】
题目:求0—7所能组成的奇数个数。
1.程序分析:
1.B,Solution(解决方案) 【不是明白是如何构思的】 |
using System; namespace ConsoleApplication1 { class Program { static void Main(string[] args) { long sum = 4, s = 4; int j; for (j = 2; j <= 8; j++) /* j is place of number*/ { Console.WriteLine(sum); if (j <= 2) { s *= 7; } else { s *= 8; } sum += s; } Console.WriteLine("sum={0}",sum); } } }
1.C,Execution Result(运行结果) |
4 32 256 2048 16384 131072 1048576 sum=8388608 请按任意键继续. . .
作者:ylbtech 出处:http://ylbtech.cnblogs.com/ 本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。 |